forked from kelvins/algorithms-and-data-structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stack.java
58 lines (51 loc) · 1.38 KB
/
Stack.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
57
58
public class pilha {
public processo processoAtual;
public pilha proximaPilha;
public pilha() {
this.processoAtual = null;
this.proximaPilha = null;
}
public void inserirpilha(processo processoNovo) {
if (this.processoAtual == null) {
this.processoAtual = processoNovo;
this.proximaPilha = new pilha();
} else {
this.proximaPilha.inserirpilha(processoNovo);
}
}
public processo removerPilha() {
if (this.proximaPilha.proximaPilha == null) {
processo removido = this.processoAtual;
this.processoAtual = null;
this.proximaPilha = null;
return removido;
} else {
return this.proximaPilha.removerPilha();
}
}
public String checkpilha(String vazia) {
if (this.proximaPilha.proximaPilha == null) {
vazia =
" " + this.processoAtual.getPrioridade() + " " + this.processoAtual.getTempo() + vazia;
} else {
vazia =
this.proximaPilha.checkpilha(vazia)
+ " && "
+ this.processoAtual.getPrioridade()
+ " "
+ this.processoAtual.getTempo()
+ " "
+ vazia;
}
return vazia;
}
public boolean vaziaPilha() {
if (this.proximaPilha == null) {
return true;
}
return false;
}
public int tempoTrabalhado(int tempo) {
return this.processoAtual.trabalhado(tempo);
}
}