-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenuStack.java
More file actions
40 lines (34 loc) · 785 Bytes
/
MenuStack.java
File metadata and controls
40 lines (34 loc) · 785 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
public class MenuStack {
Menu head;
Menu current;
Menu tail;
public MenuStack() {
head = null;
current = null;
}
public void push(Menu newMenu) {
if (head == null) {
head = newMenu;
tail = head;
} else {
head.setPrev(newMenu);
head = newMenu;
}
}
public Menu pop() {
Menu current;
current = head;
if (current != null)
head = head.getNext();
return current;
}
public int getSize() {
int size = 0;
Menu current = head;
while (current != null) {
size++;
current = current.getNext();
}
return size;
}
}