LeetCode 622. Design Circular Queue Design Circular Deque

原题链接在这里:https://leetcode.com/problems/design-circular-queue/

题目:

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.

题解:

Use an array to mimic queue.

Have start to pointing to start of queue.

Have end to poining to end of queue. 

Have len to keep track of size.

When enQueue, end = (end + 1) % k, assign arr[end].

When deQueue, start = (start + 1) % k.

Rear() return arr[end].

Front() return arr[start].

Time Complexity: MyCircularQueue, O(1). endQueue, O(1). deQueue(), O(1). Front, O(1). Rear, O(1). isEmpty, O(1). isFull, O(1).

Space: O(k).

AC Java:

 1 class MyCircularQueue {
 2     int [] arr;
 3     int start;
 4     int end;
 5     int len;
 6     int k;
 7     
 8     /** Initialize your data structure here. Set the size of the queue to be k. */
 9     public MyCircularQueue(int k) {
10         arr = new int[k];
11         start = 0;
12         end = -1;
13         len = 0;
14         this.k = k;
15     }
16     
17     /** Insert an element into the circular queue. Return true if the operation is successful. */
18     public boolean enQueue(int value) {
19         if(isFull()){
20             return false;
21         }
22         
23         end = (end + 1) % k;
24         len++;
25         arr[end] = value;
26         return true;
27     }
28     
29     /** Delete an element from the circular queue. Return true if the operation is successful. */
30     public boolean deQueue() {
31         if(isEmpty()){
32             return false;
33         }
34         
35         start = (start + 1) % k;
36         len--;
37         return true;
38     }
39     
40     /** Get the front item from the queue. */
41     public int Front() {
42         return isEmpty() ? -1 : arr[start];
43     }
44     
45     /** Get the last item from the queue. */
46     public int Rear() {
47         return isEmpty() ? -1 : arr[end];
48     }
49     
50     /** Checks whether the circular queue is empty or not. */
51     public boolean isEmpty() {
52         return len == 0;
53     }
54     
55     /** Checks whether the circular queue is full or not. */
56     public boolean isFull() {
57         return len == k;
58     }
59 }
60 
61 /**
62  * Your MyCircularQueue object will be instantiated and called as such:
63  * MyCircularQueue obj = new MyCircularQueue(k);
64  * boolean param_1 = obj.enQueue(value);
65  * boolean param_2 = obj.deQueue();
66  * int param_3 = obj.Front();
67  * int param_4 = obj.Rear();
68  * boolean param_5 = obj.isEmpty();
69  * boolean param_6 = obj.isFull();
70  */

类似Design Circular Deque.

猜你喜欢

转载自www.cnblogs.com/Dylan-Java-NYC/p/12079370.html