Skip to main content

Circular queue implementation in C

In my previous posts, we have seen what is queue data structure and how to implement it using linked list and array

Is this queue full?
But we have seen that the array implementation had some problem - it would say "Queue is full" even when the queue was not full.










In the image above, there are 3 slots free in the begining of the array. But as back (rear) is equal to size of array -1, the program will say - queue is full.

One way of overcoming this is to implement a circular queue. That is once end of array is reached, go back to beginning of array and insert elements there. Like this.
Image courtesy:maxtudor.com
 As can be seen in this diagram, once we reach end of array, next element 11 is inserted at the beginning of array. Then we continue from there.

We can say that

index = rear % MAX
array[index] = new_element

Similarly when dequeuing, we can say that

index = front % MAX
temp = array[index]

That way, when front and rear exceed MAX, they continue from 0.

Is the queue full or is it empty?

But the problem arises here. How do we determine whether the queue is full? Or the queue is empty?

In case of earlier implementation, rear=front would have meant that queue is empty.

But in the case of circular queue, front = rear may mean queue is empty or it may mean queue is full.

One way of solving this is to use one extra variable, num_ele - number of elements. Enqueue would increment num_ele and dequeue would decrement num_ele. num_ele is 0 - indicates queue is empty. num_ele is MAX indicates queue is full.

Few changes I have made to this implementation are
  1. Store array, rear, front and num_ele in a structure
  2. Initialize rear and front to -1 and initialize num_ele to 0
  3. When enqueing or adding an element
    1. If queue is not full
      1. Increment rear
      2. Add the new element at array[rear%MAX] (Max is size)
  4.  When dequeing or removing an element
    1. If queue is not empty
      1. save array[front%MAX] in temp
      2. Increment front
      3. return temp
  5. To find if the queue is empty
    1. If num_ele is 0 queue is empty
  6. To find if the queue is full
    1. If num_ele = MAX , queue is full
 Let us write code for enqueue now.


    void enqueue(struct queue *qp,int num)
    {
    if(is_full(qp))
    {
    printf("The queue is full. Can not add elements...");
    }
    else
    {
    (qp->rear)++;
    int index = qp->rear % MAX;
    qp->arr[index] = num;

    (qp->num_ele)++;
    if(qp->front==-1)
    qp->front = 0;
    }

    }


    So we increment rear. (qp->rear because we need a pointer to structure queue as we are modifying queue). But if rear exceeds MAX, we need to start from 0. So index = rear%MAX and then we add arr[index] = num.

    But what is the last if statement in the function. You remember that front and rear are initialized with -1. So when first element is added, front should point to that element. That is why front is incremented.

    Next let us write dequeue function.


    int dequeue(struct queue *qp)
    {
    int temp = -1;
    if(is_empty(qp))
    {
    printf("Queue is empty");
    }
    else
    {
    int index = qp->front %MAX;
    temp = qp->arr[index];
    (qp->front)++;
    (qp->num_ele)--;
    }
    return temp;
    }

    Here we are saving arr[front] in temp and then incrementing front. The function returns the value removed from the queue - temp. To take care of wrapping back, we again use % operator. index = front%MAX.

    Next we should write print function which will iterate over all the elements of the queue.


    void print_queue(struct queue *qp)
    {
    int i;
    printf("Queue is ");
    for(i = qp->front;i<=qp->rear;i++)
    printf("%d---",qp->arr[i%MAX]);
    printf("\n");
    }

    We start from front element of array and go till rear element. And as i may be more than size of array, we use i%MAX here too.

    Here is the complete program.


    #include<stdio.h>
    #define MAX 5

    struct queue
    {
    int arr[MAX];
    int front,rear;
    int num_ele;
    };

    void init(struct queue *qp)
    {
    qp->front = qp->rear = -1;
    qp->num_ele = 0;
    }

    int is_empty(struct queue *qp)
    {
    return qp->num_ele==0;
    }

    int is_full(struct queue *qp)
    {
    return qp->num_ele==MAX;
    }

    void enqueue(struct queue *qp,int num)
    {
    if(is_full(qp))
    {
    printf("The queue is full. Can not add elements...");
    }
    else
    {
    (qp->rear)++;
    int index = qp->rear % MAX;
    qp->arr[index] = num;

    (qp->num_ele)++;
    if(qp->front==-1)
    qp->front = 0;
    }
    }

    int dequeue(struct queue *qp)
    {
    int temp = -1;
    if(is_empty(qp))
    {
    printf("Queue is empty");
    }
    else
    {
    int index = qp->front %MAX;
    temp = qp->arr[index];
    (qp->front)++;
    (qp->num_ele)--;
    }
    return temp;
    }

    void print_queue(struct queue *qp)
    {
    int i;
    printf("Queue is ");
    for(i = qp->front;i<=qp->rear;i++)
    printf("%d---",qp->arr[i%MAX]);
    printf("\n");
    }


    int main()
    {
    struct queue q1;
    init(&q1);

    while(1)
    {
    printf("Enter 1 - enqueue 2 - dequeue 3 - exit");
    int opt;
    scanf("%d",&opt);
    if(opt==1)
    {
    int n;
    printf("Enter a number:");
    scanf("%d",&n);
    enqueue(&q1,n);
    print_queue(&q1);

    }
    else if(opt==2)
    {

    int n;
    n = dequeue(&q1);
    if (n!=-1){
    printf("Value dequed is %d\n",n);
    print_queue(&q1);
    }
    }
    else
    break;

    }
    return 0;
    }



    You can download the program from here.

    Comments

    Popular posts from this blog

    Delete a node from doubly linked list

    Deletion operation in DLL is simpler when compared to SLL. Because we don't have to go in search of previous node of to-be-deleted node.  Here is how you delete a node Link previous node of node of to-be-deleted to next node. Link next node of node of to-be-deleted to previous node. Free the memory of node of to-be-deleted Simple, isn't it. The code can go like this. prevnode = delnode->prev; nextnode = delnode->next; prevnode->next = nextnode; nextnode->prev = prevnode; free(delnode); And that is it. The node delnode is deleted. But we should always consider boundary conditions. What happens if we are trying to delete the first node or last node? If first node is to be deleted, its previous node is NULL. Hence step 3 should not be used.  And also, once head is deleted, nextnode becomes head . Similarly if last node is to be deleted, nextnode is NULL. Hence step 4 is as strict NO NO. And we should set prevnode to tail. After we put these things together, we have...

    Function to sort an array using bubble sort

    Quick and dirty way of sorting an array is bubble sort. It is very easy to write and follow. But please keep in mind that it is not at all effecient. #include<iostream> using std::cin; using std::cout; void readArray(int arr[],int sz); void printArray(int arr[],int sz); void sortArray(int arr[],int sz); void swap(int &a,int &b); int main() {    int sz;    cout<<"Size of the array=";    cin>>sz;    int arr[sz];    readArray(arr,sz);     sortArray(arr,sz);   cout<<"Sorted array is ";   printArray(arr,sz); } void readArray(int arr[],int sz) {  for(int i=0;i<sz;i++)    {       cout<<"arr["<<i<<"]=";       cin>>arr[i];   } } void printArray(int arr[],int sz) {  for(int i=0;i<sz;i++)    {       cout<<"arr["<<i<<"]=";    ...

    Merge two binary search trees

    How do you merge two binary search trees? I googled about the solutions. Most solutions told me to convert both trees into linked lists. Merge the lists. Then create a tree from the elements of the list. But why lists? Why can't we store the elements in an array? Because if the data of the tree is larger - not just integer keys, array manipulation becomes difficult. But again, we need not convert both the trees into lists. We can convert one tree into list - a doubly linked list. Then insert the elements of this list into the other tree. I tried this approach. To convert a tree into a sorted doubly linked list Create a doubly linked list. Let the prev and next links of nodes in this list be called left and right respectively. This way we can directly use the binary tree nodes in the list. Use a static variable previousnode  call the function recursively for left child of current node. link current node to the previousnode set next pointer of previousnode to curre...