-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueue.java
48 lines (39 loc) · 1 KB
/
Queue.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
// This file implements a queue data structure. The queue follows a
// first-in-first-out discipline. There is no upper bound on the number of
// items that can be in a queue.
//
// To create a new queue, do this:
//
// Queue q = new Queue();
//
// To add an item (which must be an Object, or a subclass of Object)
// to the queue, do this:
//
// q.put(item);
//
// To remove the oldest item from the queue, do this:
//
// Object o = q.get();
//
// Note that if the queue is empty, calls to get will block the calling thread,
// until something is put into the queue.
import java.util.LinkedList;
import java.util.List;
public class Queue {
private List lis = new LinkedList();
public synchronized boolean isEmpty() {
return lis.isEmpty();
}
public synchronized Object get() {
while(isEmpty()){
try{
wait();
}catch(InterruptedException x){ }
}
return lis.remove(0);
}
public synchronized void put(Object o) {
lis.add(o);
notify();
}
}