-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDualStackQueue.java
More file actions
44 lines (36 loc) · 849 Bytes
/
DualStackQueue.java
File metadata and controls
44 lines (36 loc) · 849 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
package com.example.data;
public class DualStackQueue<T extends Comparable<? super T>> {
private GenericStack<T> producerStack;
private GenericStack<T> consumerStack;
DualStackQueue() {
producerStack = new GenericStack<T>();
consumerStack = new GenericStack<T>();
}
public void write(T data) {
synchronized (producerStack) {
producerStack.push(data);
producerStack.notify();
}
}
public T read() {
if (consumerStack.isEmpty()) {
transfer();
}
return consumerStack.pop();
}
private void transfer() {
synchronized (producerStack) {
while (producerStack.isEmpty()) {
try {
producerStack.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
do {
consumerStack.push(producerStack.pop());
} while (!producerStack.isEmpty());
producerStack.notify();
}
}
}