-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStack.java
More file actions
70 lines (61 loc) · 994 Bytes
/
Stack.java
File metadata and controls
70 lines (61 loc) · 994 Bytes
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
// AUTHOR: Soel Micheletti
// Each element in the stack is a Node object
class Node {
Node next;
Node prev;
int value;
public Node(int x) {
value = x;
}
}
// Class to manage the Node objects to implement a Stack
class Stack {
Node first;
Node last;
int size;
public Stack() {
first = null;
last = null;
size = 0;
}
public void push(int x) {
Node n = new Node(x);
if (isEmpty()) {
first = last = n;
size++;
} else {
n.prev = last;
last.next = n;
last = n;
size++;
}
}
public Node pop() {
if (isEmpty()) {
throw new RuntimeException("Empty Stack!");
}
else if (size == 1) {
Node x = last;
first = last = null;
size = 0;
return x;
}
else {
Node x = last;
last.prev.next = null;
last = last.prev;
size--;
return x;
}
}
public boolean isEmpty() {
return size == 0;
}
public Node top() {
if (isEmpty()) {
throw new RuntimeException("Empty Stack!");
} else {
return last;
}
}
}