-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
57 lines (49 loc) · 1.62 KB
/
Solution.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
class MyCircularQueue {
private int maxLength;
private List<Integer> array;
/** Initialize your data structure here. Set the size of the queue to be k. */
public MyCircularQueue(int k) {
maxLength = k;
array = new ArrayList<Integer>();
}
/** Insert an element into the circular queue. Return true if the operation is successful. */
public boolean enQueue(int value) {
if (isFull()) return false;
array.add(value);
return true;
}
/** Delete an element from the circular queue. Return true if the operation is successful. */
public boolean deQueue() {
if (isEmpty()) return false;
array.remove(0);
return true;
}
/** Get the front item from the queue. */
public int Front() {
if (isEmpty()) return -1;
return array.get(0);
}
/** Get the last item from the queue. */
public int Rear() {
if (isEmpty()) return -1;
return array.get(array.size() - 1);
}
/** Checks whether the circular queue is empty or not. */
public boolean isEmpty() {
return array.size() == 0;
}
/** Checks whether the circular queue is full or not. */
public boolean isFull() {
return array.size() == maxLength;
}
}
/**
* Your MyCircularQueue object will be instantiated and called as such:
* MyCircularQueue obj = new MyCircularQueue(k);
* boolean param_1 = obj.enQueue(value);
* boolean param_2 = obj.deQueue();
* int param_3 = obj.Front();
* int param_4 = obj.Rear();
* boolean param_5 = obj.isEmpty();
* boolean param_6 = obj.isFull();
*/