-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPilha.java
58 lines (44 loc) · 1.08 KB
/
Pilha.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import java.util.Arrays;
public class Pilha {
private int[] pilha;
private int topo;
public static final int CAPACIDADE_DEFAULT = 10;
public Pilha() {
this.pilha = new int[CAPACIDADE_DEFAULT];
this.topo = -1;
}
public Pilha(int capacidade) {
this.pilha = new int[capacidade];
this.topo = -1;
}
public int peek() {
if (isEmpty()) {
throw new RuntimeException();
}
return this.pilha[topo];
}
public boolean isEmpty() {
return this.topo == -1;
}
public boolean isFull() {
return topo == pilha.length - 1;
}
public void push(int elemento) {
if (isFull()) {
throw new RuntimeException();
}
this.pilha[++topo] = elemento;
}
public int pop() {
if (isEmpty()) {
throw new RuntimeException();
}
return this.pilha[--this.topo];
}
public int size() {
return pilha.length;
}
public String toString() {
return Arrays.toString(this.pilha);
}
}