-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueue.java
65 lines (54 loc) · 1.26 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
* Created by kirtanpatel on 2/2/17.
*/
import java.util.NoSuchElementException;
public class Queue <T> {
private Node<T> rear;
private int size;
public Queue() {
rear = null;
size = 0;
}
public void enqueue(T item) {
Node<T> newItem = new Node<T>(item, null);
if (rear == null) {
newItem.next = newItem;
} else {
newItem.next = rear.next;
rear.next = newItem;
}
size++;
rear = newItem;
}
public T dequeue()
throws NoSuchElementException {
if (rear == null) {
throw new NoSuchElementException("queue is empty");
}
T data = rear.next.data;
if (rear == rear.next) {
rear = null;
} else {
rear.next = rear.next.next;
}
size--;
return data;
}
public int size() {
return size;
}
public boolean isEmpty() {
return size == 0;
}
public void clear() {
size = 0;
rear = null;
}
public T peek()
throws NoSuchElementException {
if (rear == null) {
throw new NoSuchElementException("queue is empty");
}
return rear.next.data;
}
}