Design your implementation of the circular queue. The circular queue is a linear data structure in which the operations are performed based on FIFO (First In First Out) principle and the last position is connected back to the first position to make a circle. It is also called "Ring Buffer".
One of the benefits of the circular queue is that we can make use of the spaces in front of the queue. In a normal queue, once the queue becomes full, we cannot insert the next element even if there is a space in front of the queue. But using the circular queue, we can use the space to store new values.
Your implementation should support following operations:
MyCircularQueue(k): Constructor, set the size of the queue to be k.
Front: Get the front item from the queue. If the queue is empty, return -1.
Rear: Get the last item from the queue. If the queue is empty, return -1.
enQueue(value): Insert an element into the circular queue. Return true if the operation is successful.
deQueue(): Delete an element from the circular queue. Return true if the operation is successful.
isEmpty(): Checks whether the circular queue is empty or not.
isFull(): Checks whether the circular queue is full or not.
Example:
MyCircularQueue circularQueue = new MycircularQueue(3); // set the size to be 3
circularQueue.enQueue(1); // return true
circularQueue.enQueue(2); // return true
circularQueue.enQueue(3); // return true
circularQueue.enQueue(4); // return false, the queue is full
circularQueue.Rear(); // return 3
circularQueue.isFull(); // return true
circularQueue.deQueue(); // return true
circularQueue.enQueue(4); // return true
circularQueue.Rear(); // return 4
Note:
All values will be in the range of [0, 1000].
The number of operations will be in the range of [1, 1000].
Please do not use the built-in Queue library.
Analysis
Array 数组实现:
重点在于确定循环队列空和满的情况,以及确定下一个rear和front的下标位置。
设定一个 int length 可以记录当前queue的元素个数,和循环队列的大小比较就可以得到是否满,检查length是否为0,则检测队列是否为空。
classMyCircularQueue {privateint length;privateint rear, front;privateint[] q; /** Initialize your data structure here. Set the size of the queue to be k. */publicMyCircularQueue(int k) { q =newint[k]; length =0; front =0; rear =-1; } /** Insert an element into the circular queue. Return true if the operation is successful. */publicbooleanenQueue(int value) {if (isFull()) {returnfalse; } rear = (rear +1) % (q.length); q[rear] = value; length++;returntrue; } /** Delete an element from the circular queue. Return true if the operation is successful. */publicbooleandeQueue() {if (isEmpty()) {returnfalse; } front = (front +1) % (q.length); length--;returntrue; } /** Get the front item from the queue. */publicintFront() {returnisEmpty()?-1: q[front]; } /** Get the last item from the queue. */publicintRear() {returnisEmpty()?-1: q[rear]; } /** Checks whether the circular queue is empty or not. */publicbooleanisEmpty() {return length ==0; } /** Checks whether the circular queue is full or not. */publicbooleanisFull() {return length ==q.length; }}/** * 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(); */
Array Implementation 2 - init front = 0, rear = 0
classMyCircularQueue {privateint length;privateint rear, front;privateint[] q; /** Initialize your data structure here. Set the size of the queue to be k. */publicMyCircularQueue(int k) { q =newint[k]; length =0; front =0; rear =0; } /** Insert an element into the circular queue. Return true if the operation is successful. */publicbooleanenQueue(int value) {if (isFull()) {returnfalse; } q[rear] = value; rear = (rear +1) % (q.length); length++;returntrue; } /** Delete an element from the circular queue. Return true if the operation is successful. */publicbooleandeQueue() {if (isEmpty()) {returnfalse; } front = (front +1) % (q.length); length--;returntrue; } /** Get the front item from the queue. */publicintFront() {returnisEmpty()?-1: q[front]; } /** Get the last item from the queue. */publicintRear() {returnisEmpty()?-1: q[(rear +q.length-1) %q.length]; } /** Checks whether the circular queue is empty or not. */publicbooleanisEmpty() {return length ==0; } /** Checks whether the circular queue is full or not. */publicbooleanisFull() {return length ==q.length; }}/** * 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(); */
LeetCode Official Solution - Array Implementation
classMyCircularQueue {privateint[] data;privateint head;privateint tail;privateint size; /** Initialize your data structure here. Set the size of the queue to be k. */publicMyCircularQueue(int k) { data =newint[k]; head =-1; tail =-1; size = k; } /** Insert an element into the circular queue. Return true if the operation is successful. */publicbooleanenQueue(int value) {if (isFull()==true) {returnfalse; }if (isEmpty()==true) { head =0; } tail = (tail +1) % size; data[tail] = value;returntrue; } /** Delete an element from the circular queue. Return true if the operation is successful. */publicbooleandeQueue() {if (isEmpty()==true) {returnfalse; }if (head == tail) { head =-1; tail =-1;returntrue; } head = (head +1) % size;returntrue; } /** Get the front item from the queue. */publicintFront() {if (isEmpty()==true) {return-1; }return data[head]; } /** Get the last item from the queue. */publicintRear() {if (isEmpty()==true) {return-1; }return data[tail]; } /** Checks whether the circular queue is empty or not. */publicbooleanisEmpty() {return head ==-1; } /** Checks whether the circular queue is full or not. */publicbooleanisFull() {return ((tail +1) % size) == head; }}/** * 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(); */
Using (Doubly) Linked List
classListNode {int val;ListNode prev, next;publicListNode(int x) { val = x; prev =null; next =null; }}classMyCircularQueue {int queueSize, currSize;ListNode head, tail; /** Initialize your data structure here. Set the size of the queue to be k. */publicMyCircularQueue(int k) { queueSize = k; currSize =0; head =newListNode(-1); tail =newListNode(-1);head.next= tail;tail.prev= head; } /** Insert an element into the circular queue. Return true if the operation is successful. */publicbooleanenQueue(int value) {if (isFull()) {returnfalse; }ListNode newNode =newListNode(value);newNode.next= tail;newNode.prev=tail.prev;tail.prev.next= newNode;tail.prev= newNode; currSize++;returntrue; } /** Delete an element from the circular queue. Return true if the operation is successful. */publicbooleandeQueue() {if (isEmpty()) {returnfalse; }ListNode toBeDeleted =head.next;head.next=toBeDeleted.next;toBeDeleted.next.prev= head;toBeDeleted.next=null;toBeDeleted.prev=null; currSize--;returntrue; } /** Get the front item from the queue. */publicintFront() {if(isEmpty()) {return-1; }returnhead.next.val; } /** Get the last item from the queue. */publicintRear() {if(isEmpty()) {return-1; }returntail.prev.val; } /** Checks whether the circular queue is empty or not. */publicbooleanisEmpty() {return currSize ==0; } /** Checks whether the circular queue is full or not. */publicbooleanisFull() {return currSize == queueSize; }}