-
Notifications
You must be signed in to change notification settings - Fork 0
/
Deque.java
132 lines (116 loc) · 3.33 KB
/
Deque.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
public class Deque<E> {
private E[] data;
private int front, tail;
private int size;
public Deque(int capacity) {
data = (E[]) new Object[capacity];
front = 0;
tail = 0;
size = 0;
}
public Deque() {
this(10);
}
public int getCapacity() {
return data.length;
}
public boolean isEmpty() {
return size == 0;
}
public int getSize() {
return size;
}
public void addLast(E e) {
if (size == getCapacity()) {
resize(getCapacity() * 2);
}
data[tail] = e;
tail = (tail + 1) % data.length;
size++;
}
public void addFront(E e) {
if (size == getCapacity()) {
resize(getCapacity() * 2);
}
front = front == 0 ? data.length - 1 : front - 1;
data[front] = e;
size++;
}
public E removeFront() {
if (isEmpty()) {
throw new IllegalArgumentException("deque is empty. no element to remove.");
}
E e = data[front];
data[front] = null; //
front = (front + 1) % data.length;
size--;
if (size == getCapacity() / 4 && getCapacity() / 2 != 0) //
resize(getCapacity() / 2);
return e;
}
public E removeLast() {
if (isEmpty()) {
throw new IllegalArgumentException("deque is empty. no element to remove.");
}
tail = tail == 0 ? data.length - 1 : tail - 1; //
E e = data[tail];
data[tail] = null;
size--;
if (size == getCapacity() / 4 && getCapacity() / 2 != 0) {
resize(getCapacity() / 2);
}
return e;
}
public E getFront() {
if (isEmpty())
throw new IllegalArgumentException("deque is empty. no front element.");
return data[front];
}
public E getLast() {
if (isEmpty())
throw new IllegalArgumentException("deque is empty. no tail element.");
int idx = tail == 0 ? data.length - 1 : tail - 1;
return data[idx];
}
private void resize(int newCapacity) {
E[] newData = (E[]) new Object[newCapacity + 1];
for (int i = 0; i < size; i++) {
newData[i] = data[(front + i) % data.length];
}
data = newData;
front = 0;
tail = size;
}
@Override
public String toString() {
StringBuilder str = new StringBuilder();
str.append(String.format("Queue: size = %d , capacity = %d\n", size, getCapacity()));
str.append("front [");
for (int i = front; i != tail; i = (i + 1) % data.length) {
str.append(data[i]);
if ((i + 1) % data.length != tail) {
str.append(", ");
}
}
str.append("] tail");
return str.toString();
}
public static void main(String[] args) {
Deque<Integer> dq = new Deque<>();
for (int i = 0; i < 16; i++) {
if (i % 2 == 0)
dq.addLast(i);
else
dq.addFront(i);
System.out.println(dq);
}
System.out.println();
for (int i = 0; !dq.isEmpty(); i++) {
if (i % 2 == 0)
dq.removeFront();
else
dq.removeLast();
System.out.println(dq);
}
}
}