-
Notifications
You must be signed in to change notification settings - Fork 0
/
PilhaEncadeada
146 lines (127 loc) · 2.81 KB
/
PilhaEncadeada
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
import java.util.NoSuchElementException;
import ListaSimplesmenteEncadeada.NoSimpEnc;
public class PilhaEncadeada<T> implements IPilha<T>, Iterable<T> {
private NoSimpEnc<T> inicio;
private NoSimpEnc<T> topo;
private int cont;
public NoSimpEnc<T> localizaPosicao(int posicao) {
NoSimpEnc<T> aux = this.inicio;
for (int i = 0; i < posicao - 1; i++) {
aux = aux.getProximo();
}
return aux;
}
@Override
public T top() {
return this.topo.getElemento();
}
@Override
public void limpar() {
if (this.inicio != null) {
NoSimpEnc<T> aux;
for (int i = 0; i < this.cont; i++) {
aux = this.inicio;
this.inicio = this.inicio.getProximo();
aux.setElemento(null);
}
this.inicio = this.topo = null;
this.cont = 0;
}
}
@Override
public int tamanho() {
return this.cont;
}
@Override
public boolean estaVazia() {
if (this.inicio == null && this.topo == null) {
return true;
}
return false;
}
@Override
public boolean contem(T elemento) {
NoSimpEnc<T> aux = this.inicio;
for (int i = 0; i < this.cont; i++) {
if (aux.getElemento().equals(elemento)) {
return true;
}
aux = aux.getProximo();
}
return false;
}
@Override
public int distancia(T elemento) {
NoSimpEnc<T> aux = this.inicio;
for (int i = 0; i < this.cont; i++) {
if(aux.getElemento().equals(elemento)){
return this.cont - (i - 1);
}
}
return - 1;
}
@Override
public T desempilhar() {
NoSimpEnc<T> aux = this.localizaPosicao(this.cont - 1);
T guardaFim = this.top();
aux.setProximo(null);
this.topo.setElemento(null);
this.topo = aux;
this.cont--;
return guardaFim;
}
@Override
public void empilhar(T elemento) {
NoSimpEnc<T> newElement = new NoSimpEnc<T>(elemento);
if (this.inicio == null) {
this.inicio = this.topo = newElement;
} else {
NoSimpEnc<T> aux = this.topo;
aux.setProximo(newElement);
this.topo = newElement;
}
this.cont++;
}
public String toString() {
NoSimpEnc<T> lista = this.inicio;
String texto = "[";
if (this.cont == 0) {
return "[]";
} else {
for (int i = 0; i < cont - 1; i++) {
texto = texto + lista.getElemento() + ",";
lista = lista.getProximo();
}
}
texto = texto + lista.getElemento() + "]";
return texto;
}
@Override
public Iterator<T> iterator() {
Iterator<T> myIterator = new Iterator<T>() {
private NoSimpEnc<T> posicao = inicio;
@Override
public boolean hasNext() {
if (posicao != null) {
return true;
} else {
return false;
}
}
@Override
public T next() throws NoSuchElementException {
if (!hasNext()) {
throw new NoSuchElementException();
} else {
T elemento = posicao.getElemento();
posicao = posicao.getProximo();
return elemento;
}
}
@Override
public void remove() {
}
};
return myIterator;
}
}