-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkedListQueue.java
More file actions
93 lines (84 loc) · 1.9 KB
/
LinkedListQueue.java
File metadata and controls
93 lines (84 loc) · 1.9 KB
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
87
88
89
90
91
92
93
/**
* @author tailor
* @create 2020/3/23 - 13:30
* @mail wql2014302721@gmail.com
*/
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 void enqueue(E e) {
if(null == tail){
tail = new Node(e);
head = tail;
}else{
tail.next = new Node(e);
tail = tail.next;
}
size++;
}
@Override
public E dequeue() {
Node node = head;
head = head.next;
size--;
return node.e;
}
@Override
public E getFront() {
return head.e;
}
@Override
public int getSize() {
return size;
}
@Override
public boolean isEmpty() {
return 0 == size;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(String.format("LinkedListQueue: size:%d [head ", size));
Node cur = head;
while(cur != null){
sb.append(cur.e + "->");
cur = cur.next;
}
sb.append("NULL tail]");
return sb.toString();
}
public static void main(String[] args) {
Queue<Integer> queue = new LinkedListQueue<>();
for(int i=0;i<10; i++){
queue.enqueue(i);
if(i%3 == 2){
queue.dequeue();
}
System.out.println(queue);
}
}
}