-
Notifications
You must be signed in to change notification settings - Fork 0
/
Deque.java
282 lines (226 loc) · 5.76 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
import java.lang.reflect.Array;
import java.util.Arrays;
@SuppressWarnings("unchecked")
public class Deque<Item> {
private Item[] deque;
private int access ;
private int size;
/***
*constructor: create an empty Deque with initial
*capacity of 10
*/
public Deque() {
//TO BE IMPLEMENTED
deque= (Item[]) new Object[10];
access =0;
size=0;
}
/***
*constructor: create an empty Deque with initial
*capacity of n
*/
public Deque(int n) {
//TO BE IMPLEMENTED
deque= (Item[]) new Object[n];
access =0;
size=0;
}
/***
*add an item to the front of the Deque
*double the array capacity if Deque is full
*/
public void addToFront(Item item) {
//TO BE IMPLEMENTED
/*if (!((deque[deque.length-1])==null)) {
deque= Arrays.copyOf(deque, deque.length*2);
}
for (int i=deque.length-1;i>0;i--) {
deque[i]=deque[i-1];
+=2;
}
deque[0]=item;
+=1;*/
if (size==deque.length) {
deque= Arrays.copyOf(deque, deque.length*2);
}
for (int i=size; i>0; i--) {
deque[i]= deque[i-1];
}
deque[0]=item;
size++;
}
/***
*add an item to the back of the Deque;
*double the array capacity if the Deque is full
***/
public void addToBack(Item item) {
//TO BE IMPLEMENTED
/*
if (!((deque[deque.length-1])==null)) {
deque= Arrays.copyOf(deque, deque.length*2);
}
for (int i=0; i<deque.length-1; i++) {
if (deque[i]==null)
deque[i]=item;
+=2;
break;
}
}
*/
if (size==deque.length) {
deque= Arrays.copyOf(deque, deque.length*2);
}
deque[size]=item;
size++;
}
/***
*remove and return the front item from the Deque;
*throw EmptyDequeException if the Deque is empty;
*reduce the array capacity by half if the size
*of the Deque size falls below floor(N/4) where
*N is the array capacity, but do not resize it
*to be below the default capacity, which is 10
***/
public Item getFirst() throws EmptyDequeException {
//TO BE IMPLEMENTED
Item ans;
if (size==0) {
throw new EmptyDequeException();
}else {
ans= deque[0];
for (int i=0; i<size-1; i++) {
deque[i]=deque[i+1];
}
deque[size-1]=null;
size--;
if (size<deque.length/4 && deque.length/2>=10) {
deque=Arrays.copyOf(deque, deque.length/2);
}
}
return ans;
/*else {
ans=deque[0];
+=1;
}
for (int i=0; i<deque.length-1; i++) {
deque[i]=deque[i+1];
deque[deque.length-1]=null;
+=3;
if (i>20 && deque[i]==null && i<((deque.length/4)%1)) {
deque= Arrays.copyOf(deque, deque.length/2);
+=1;
break;
}
}
return ans;*/
}
/***
*remove and return the back item from the Deque;
*throw EmptyDequeException if the Deque is empty;
*reduce the array capacity by half if the size
*of the Deque size falls below floor(N/4) where
*N is the array capacity, but do not resize it
*to be below the default capacity, which is 10
***/
public Item getLast() throws EmptyDequeException {
//TO BE IMPLEMENTED
Item ans=null;
if (size==0) {
throw new EmptyDequeException();
}else {
ans=deque[size-1];
deque[size-1]=null;
size--;
if (size<deque.length/4 && deque.length/2>=10) {
deque= Arrays.copyOf(deque, deque.length/2);
}
return ans;
}
/*if (deque[0]==null) {
+=1;
throw new EmptyDequeException();
}else {
for (int i=0; i<deque.length; i++) {
deque[i]=deque[i+1];
if (i==deque.length) {
ans= deque[i];
deque[i]=null;
+=4;
}else if(deque[i+1]==null) {
ans=deque[i];
deque[i]=null;
+=4;
}
+=1;
if (i>20 && deque[i]==null && i<((deque.length/4)%1)) {
+=1;
deque= Arrays.copyOf(deque, deque.length/2);
break;
}
}
return ans;
}*/
}
/***
*return true if the Deque is empty;
*return false if the Deque is not empty
***/
public boolean isEmpty() {
//TO BE IMPLEMENTED
return (size==0);
}
/***
*return the size of the Deque (i.e. the
*number of elements currently in the Deque)
***/
public int size() {
//TO BE IMPLEMENTED
return size;
}
/***
*return but do not remove the front item in the Deque;
*throw an EmptyDequeException if the Deque is empty
*/
public Item peekFirst() throws EmptyDequeException {
//TO BE IMPLEMENTED
if (size==0) {
throw new EmptyDequeException();
}
return deque[0];
}
/***
*return but do not remove the back item in the Deque;
*throw an EmptyDequeException if the Deque is empty
*/
public Item peekLast() throws EmptyDequeException {
//TO BE IMPLEMENTED
if (size==0) {
throw new EmptyDequeException();
}
return deque[size-1];
}
/***
*return the underlying array
***/
public Item[] getArray() {
//TO BE IMPLEMENTED
return deque;
}
/***
*return the array es count
***/
public int getAccessCount() {
//TO BE IMPLEMENTED
return access;
}
/***
*reset the array count to 0
***/
public void resetAccessCount() {
//TO BE IMPLEMENTED
access =0;
}
public static void main(String[] args) {
//TO BE IMPLEMENTED
}
}