Circular Queue - Amazon Top Interview Questions


Problem Statement :


Implement a circular queue with the following methods:

CircularQueue(int capacity) which creates an instance of a circular queue with size capacity. 

Circular queues are implemented using an array which holds the enqueued values with pointers pointing to the start and end of the queue.
When the queue reaches the end of the array, it will start to fill items from the start of the array if they were dequeued.
boolean enqueue(int val) which adds val to the queue if it has space.
If the queue is full, return false to denote it can't be added and return true otherwise.
boolean dequeue() which removes the first element that was enqueued. 
If the queue is empty, return false to denote it can't be removed and return true otherwise.
int front() which returns the first element that was enqueued. If the queue is empty, return -1.
int top() which returns the last element that was enqueued. If the queue is empty, return -1.
boolean isFull() which returns whether the queue has capacity elements.
boolean isEmpty() which returns whether the queue has no elements.

Constraints

0 ≤ n ≤ 100,000 where n is the number of calls to the queue

Example 1

Input

methods = ["constructor", "enqueue", "enqueue", "enqueue", "top", "front", "isFull", "isEmpty", "dequeue", "enqueue", "dequeue", "dequeue", "dequeue", "isEmpty"]
arguments = [[3], [1], [2], [3], [], [], [], [], [], [4], [], [], [], []]`

Output

[None, True, True, True, 3, 1, True, False, True, True, True, True, True, True]

Explanation

q = CircularQueue(3)

q.enqueue(1)
q.enqueue(2)
q.enqueue(3)
q.top() == 3
q.front() == 1
q.isFull() == True
q.isEmpty() == False
q.dequeue() == True
q.enqueue(4) == True
q.dequeue() == True
q.dequeue() == True
q.dequeue() == True
q.isEmpty() == True



Solution :



title-img




                        Solution in C++ :

class CircularQueue {
    public:
    vector<int> arr;
    int i, j, n, total;
    CircularQueue(int capacity) {
        arr.resize(capacity);
        i = j = total = 0;
        n = capacity;
    }
    bool enqueue(int val) {
        if (isFull()) return false;
        total += 1;
        arr[i] = val;
        i = (i + 1) % n;
        return true;
    }

    bool dequeue() {
        if (isEmpty()) return false;
        j = (j + 1) % n;
        total -= 1;
        return true;
    }
    int front() {
        if (isEmpty()) return -1;
        return arr[j];
    }
    int top() {
        if (isEmpty()) return -1;
        return arr[(i - 1 + n) % n];
    }

    bool isFull() {
        return total == n ? true : false;
    }

    bool isEmpty() {
        return total == 0 ? true : false;
    }
};
                    




                        Solution in Python : 
                            
class CircularQueue:
    def __init__(self, capacity):
        self.arr = [0] * capacity
        self.n = capacity
        self.front_idx = 0
        self.total = 0

    def enqueue(self, val):
        if self.isFull():
            return False
        self.arr[(self.front_idx + self.total) % self.n] = val
        self.total += 1
        return True

    def dequeue(self):
        if self.isEmpty():
            return False
        self.front_idx += 1
        self.front_idx %= self.n
        self.total -= 1
        return True

    def front(self):
        if self.isEmpty():
            return -1
        return self.arr[self.front_idx]

    def top(self):
        if self.isEmpty():
            return -1
        return self.arr[(self.front_idx + self.total - 1) % self.n]

    def isFull(self):
        return self.total == self.n

    def isEmpty(self):
        return self.total == 0
                    


View More Similar Problems

Insert a node at a specific position in a linked list

Given the pointer to the head node of a linked list and an integer to insert at a certain position, create a new node with the given integer as its data attribute, insert this node at the desired position and return the head node. A position of 0 indicates head, a position of 1 indicates one node away from the head and so on. The head pointer given may be null meaning that the initial list is e

View Solution →

Delete a Node

Delete the node at a given position in a linked list and return a reference to the head node. The head is at position 0. The list may be empty after you delete the node. In that case, return a null value. Example: list=0->1->2->3 position=2 After removing the node at position 2, list'= 0->1->-3. Function Description: Complete the deleteNode function in the editor below. deleteNo

View Solution →

Print in Reverse

Given a pointer to the head of a singly-linked list, print each data value from the reversed list. If the given list is empty, do not print anything. Example head* refers to the linked list with data values 1->2->3->Null Print the following: 3 2 1 Function Description: Complete the reversePrint function in the editor below. reversePrint has the following parameters: Sing

View Solution →

Reverse a linked list

Given the pointer to the head node of a linked list, change the next pointers of the nodes so that their order is reversed. The head pointer given may be null meaning that the initial list is empty. Example: head references the list 1->2->3->Null. Manipulate the next pointers of each node in place and return head, now referencing the head of the list 3->2->1->Null. Function Descriptio

View Solution →

Compare two linked lists

You’re given the pointer to the head nodes of two linked lists. Compare the data in the nodes of the linked lists to check if they are equal. If all data attributes are equal and the lists are the same length, return 1. Otherwise, return 0. Example: list1=1->2->3->Null list2=1->2->3->4->Null The two lists have equal data attributes for the first 3 nodes. list2 is longer, though, so the lis

View Solution →

Merge two sorted linked lists

This challenge is part of a tutorial track by MyCodeSchool Given pointers to the heads of two sorted linked lists, merge them into a single, sorted linked list. Either head pointer may be null meaning that the corresponding list is empty. Example headA refers to 1 -> 3 -> 7 -> NULL headB refers to 1 -> 2 -> NULL The new list is 1 -> 1 -> 2 -> 3 -> 7 -> NULL. Function Description C

View Solution →