-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathQueueStack.java
74 lines (67 loc) · 1.49 KB
/
QueueStack.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import java.util.Stack;
/**
* Implement a queue using 2 stacks
*/
public class QueueStack<T> {
Stack<T> stackIn;
Stack<T> stackOut;
/**
* constructor
*/
public QueueStack(){
stackIn = new Stack<T>();
stackOut = new Stack<T>();
}
public void offer(T item){
stackIn.push(item);
}
public T poll(){
if (!stackOut.empty())
return stackOut.pop();
else if (!stackIn.empty()){
transfer();
return stackOut.pop();
}
else
return null;
}
public T peek(){
if (!stackOut.empty())
return stackOut.peek();
else if (!stackIn.empty()){
transfer();
return stackOut.peek();
}
else
return null;
}
/**
* @return true if the queue is empty, false otherwise
*/
public boolean isEmpty(){
return (stackIn.empty() && stackOut.empty());
}
/**
* Transfers all items in stackIn to stackOut
*/
public void transfer(){
while (!stackIn.empty()){
stackOut.push(stackIn.pop());
}
}
public static void main(String[] args) {
QueueStack<Character> qs = new QueueStack<Character>();
qs.offer('a');
qs.offer('b');
System.out.println(qs.peek()); // should print 'a'
qs.offer('c');
qs.offer('d');
System.out.println(qs.poll()); // should print 'a'
System.out.println(qs.poll()); // should print 'b'
System.out.println(qs.poll()); // should print 'c'
System.out.println(qs.poll()); // should print 'd'
System.out.println(qs.isEmpty()); // should print true
qs.offer('e');
System.out.println(qs.poll()); // should print 'e'
}
}