DDSA Solutions

641. Design Circular Deque

Advertisement

Intuition

Circular buffer with head and tail pointers. Support front/rear insert and delete in O(1).

Algorithm

  1. 1Fixed-size array of capacity k+1 (or k with a count variable).
  2. 2head points to front; tail to one past rear.
  3. 3InsertFront: head = (head-1+size)%size; arr[head]=val. InsertLast: arr[tail]=val; tail=(tail+1)%size.
  4. 4DeleteFront: head=(head+1)%size. DeleteLast: tail=(tail-1+size)%size.

Common Pitfalls

  • Use k+1 size to distinguish empty (head==tail) from full ((tail+1)%size==head).
641.cs
C#
// Approach: Circular array with front/rear pointers and a size counter;
// insert and delete at both ends by advancing pointers modulo k.
// Time: O(1) per operation Space: O(k)

public class MyCircularDeque
{
    private readonly int k;
    private int[] q;
    private int size = 0;
    private int front = 0;
    private int rear;

    /** Initialize your data structure here. Set the size of the deque to be k. */
    public MyCircularDeque(int k)
    {
        this.k = k;
        this.q = new int[k];
        this.rear = k - 1;
    }

    /** Adds an item at the front of Deque. Return true if the operation is successful. */
    public bool InsertFront(int value)
    {
        if (IsFull())
            return false;

        front = (--front + k) % k;
        q[front] = value;
        ++size;
        return true;
    }

    /** Adds an item at the rear of Deque. Return true if the operation is successful. */
    public bool InsertLast(int value)
    {
        if (IsFull())
            return false;

        rear = ++rear % k;
        q[rear] = value;
        ++size;
        return true;
    }

    /** Deletes an item from the front of Deque. Return true if the operation is successful. */
    public bool DeleteFront()
    {
        if (IsEmpty())
            return false;

        front = ++front % k;
        --size;
        return true;
    }

    /** Deletes an item from the rear of Deque. Return true if the operation is successful. */
    public bool DeleteLast()
    {
        if (IsEmpty())
            return false;

        rear = (--rear + k) % k;
        --size;
        return true;
    }

    /** Get the front item from the deque. */
    public int GetFront()
    {
        return IsEmpty() ? -1 : q[front];
    }

    /** Get the last item from the deque. */
    public int GetRear()
    {
        return IsEmpty() ? -1 : q[rear];
    }

    /** Checks whether the circular deque is empty or not. */
    public bool IsEmpty()
    {
        return size == 0;
    }

    /** Checks whether the circular deque is full or not. */
    public bool IsFull()
    {
        return size == k;
    }
}

/**
 * Your MyCircularDeque object will be instantiated and called as such:
 * MyCircularDeque obj = new MyCircularDeque(k);
 * bool param_1 = obj.InsertFront(value);
 * bool param_2 = obj.InsertLast(value);
 * bool param_3 = obj.DeleteFront();
 * bool param_4 = obj.DeleteLast();
 * int param_5 = obj.GetFront();
 * int param_6 = obj.GetRear();
 * bool param_7 = obj.IsEmpty();
 * bool param_8 = obj.IsFull();
 */
Advertisement
Was this solution helpful?