-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLinkedListQueue.java
86 lines (77 loc) · 1.32 KB
/
LinkedListQueue.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
75
76
77
78
79
80
81
82
83
84
85
86
public class LinkedListQueue<E> implements Queue<E> {
private class Node{
public E e;
public Node next;
public Node(E e,Node next) {
this.e=e;
this.next=next;
}
public Node(E e) {
this(e,null);
}
public Node() {
this(null,null);
}
@Override
public String toString() {
return e.toString();
}
}
private Node head,tail;
private int size;
public LinkedListQueue() {
head=null;
tail=null;
size=0;
}
@Override
public int getSize() {
return size;
}
@Override
public boolean isEmpty() {
return size==0;
}
@Override
public void enqueue(E e) {
if(tail==null) {
tail=new Node(e);
head=tail;
}
else {
tail.next=new Node(e);
tail=tail.next;
}
size++;
}
public E dequeue() {
if(isEmpty()) {
throw new IllegalArgumentException("dequeue is empty queue");
}
Node retNode=head;
head=head.next;
retNode.next=null;
if(head==null) {
tail=null;
}
size--;
return retNode.e;
}
public E getFront() {
if(isEmpty()) {
throw new IllegalArgumentException("queue is empty");
}
return head.e;
}
public String toString() {
StringBuilder res=new StringBuilder();
res.append("queue is empty");
Node cur=head;
while(cur!=null) {
res.append(cur+"->");
cur=cur.next;
}
res.append("Null tail");
return res.toString();
}
}