-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStack.java
60 lines (50 loc) · 1.45 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
59
60
/* Joshua Villasenor
masc0431
*/
package data_structures;
import java.util.*;
public class Stack <E> implements Iterable<E> {
ListADT <E> list;
public Stack(){
list = new LinkedListDS<E>();
}
// inserts the object obj into the stack
public void push(E obj) {
list.addFirst(obj);
}
// pops and returns the element on the top of the stack
public E pop() {
return list.removeFirst();
}
// returns the number of elements currently in the stack
public int size() {
return list.size();
}
// return true if the stack is empty, otherwise false
public boolean isEmpty() {
return list.isEmpty();
}
// returns but does not remove the element on the top of the stack
public E peek() {
return list.peekFirst();
}
// returns true if the object obj is in the stack,
// otherwise false
public boolean contains(E obj) {
return list.contains(obj);
}
// returns the stack to an empty state
public void makeEmpty() {
list.makeEmpty();
}
// removes the Object obj if it is in the stack and
// returns true, otherwise returns false.
public boolean remove(E obj) {
return list.remove(obj);
}
// returns a iterator of the elements in the stack. The elements
// must be in the same sequence as pop() would return them.
public Iterator<E> iterator() {
return list.iterator();
}
}