This blog is under construction

Wednesday 20 February 2013

C Program For Double Ended Queue (Dequeue)

Dequeue is also called as double ended queue and it allows user to perform insertion and deletion from the front and rear position.  And it can be easily implemented using doubly linked list.  On creating dequeue, we need to add two special nodes at the ends of the doubly linked list(head and tail). And these two nodes needs to be linked between each other(initially).

          head                                                     tail
      ---------------------------                --------------------------------
     |         |        |        ---|---------->|           |           |            |
     | NULL |   0   |            |              |           |   0      |  NULL   |
     |         |        |            |<----------|---       |           |            |
     ----------------------------                -------------------------------

So, the header node goes before the first node of the queue and the trailer node goes after the last node in the queue.  To do insertion at the front position, place the new node next to the head.  And to do insertion at the rear position, place the new node before the tail.  Similarly, dequeue operation can also be performed at the front and rear positions.

See Also:
C Program For Array Implementation Of Queue
C Program For Array Implementation Of Stack
C Program For Linked List Implementation Of Stack
C Program For Linked List Implementation Of Queue
C Program For Double Ended Queue (Dequeue)
C Program To Implement Circular Stack
C Program To Implement Circular Queue
C Program To Implement Priority Queue


Example Program For Double Ended Queue:



  #include <stdio.h>
  #include <stdlib.h>

  struct node {
        int data;
        struct node *prev, *next;
  };

  struct node *head = NULL, *tail = NULL;

  struct node * createNode(int data) {
        struct node *newnode = (struct node *)malloc(sizeof (struct node));
        newnode->data = data;
        newnode->next = newnode->prev = NULL;
        return (newnode);
  }

   /*
    * create sentinel(dummy head & tail) that
    * helps us to do insertion and deletion 
    * operation at front and rear so easily.  And
    * these dummy head and tail wont get deleted
    * till the end of execution of this program
    */

  void createSentinels() {
        head = createNode(0);
        tail = createNode(0);
        head->next = tail;
        tail->prev = head;
  }

  /* insertion at the front of the queue */
  void enqueueAtFront(int data) {
        struct node *newnode, *temp;
        newnode = createNode(data);
        temp = head->next;
        head->next = newnode;
        newnode->prev = head;
        newnode->next = temp;
        temp->prev = newnode;
  }

  /*insertion at the rear of the queue */
  void enqueueAtRear(int data) {
        struct node *newnode, *temp;
        newnode = createNode(data);
        temp = tail->prev;
        tail->prev = newnode;
        newnode->next = tail;
        newnode->prev = temp;
        temp->next = newnode;
  }

  /* deletion at the front of the queue */
  void dequeueAtFront() {
        struct node *temp;
        if (head->next == tail) {
                printf("Queue is empty\n");
        } else {
                temp = head->next;
                head->next = temp->next;
                temp->next->prev = head;
                free(temp);
        }
        return;
  }


  /* deletion at the rear of the queue */

  void dequeueAtRear()  {
        struct node *temp;
        if (tail->prev == head) {
                printf("Queue is empty\n");
        } else {
                temp = tail->prev;
                tail->prev = temp->prev;
                temp->prev->next = tail;
                free(temp);
        }
        return;
  }

  /* display elements present in the queue */
  void display() {
        struct node *temp;

        if (head->next == tail) {
                printf("Queue is empty\n");
                return;
        }

        temp = head->next;
        while (temp != tail) {
                printf("%-3d", temp->data);
                temp = temp->next;
        }
        printf("\n");
  }

  int main() {
        int data, ch;
        createSentinels();
        while (1) {
                printf("1. Enqueue at front\n2. Enqueue at rear\n");
                printf("3. Dequeue at front\n4. Dequeue at rear\n");
                printf("5. Display\n6. Exit\n");
                printf("Enter your choice:");
                scanf("%d", &ch);
                switch (ch) {
                        case 1:
                                printf("Enter the data to insert:");
                                scanf("%d", &data);
                                enqueueAtFront(data);
                                break;

                        case 2:
                                printf("Enter ur data to insert:");
                                scanf("%d", &data);
                                enqueueAtRear(data);
                                break;

                        case 3:
                                dequeueAtFront();
                                break;

                        case 4:
                                dequeueAtRear();
                                break;

                        case 5:
                                display();
                                break;

                        case 6:
                                exit(0);

                        default:
                                printf("Pls. enter correct option\n");
                                break;
                }
        }
        return 0;
  }



  Output: (C Program For Double Ended Queue-Dequeue)
  jp@jp-VirtualBox:$ ./a.out
  1. Enqueue at front
  2. Enqueue at rear
  3. Dequeue at front
  4. Dequeue at rear
  5. Display
  6. Exit
  Enter your choice:1
  Enter the data to insert:10
  1. Enqueue at front
  2. Enqueue at rear
  3. Dequeue at front
  4. Dequeue at rear
  5. Display
  6. Exit
  Enter your choice:1
  Enter the data to insert:20
  1. Enqueue at front
  2. Enqueue at rear
  3. Dequeue at front
  4. Dequeue at rear
  5. Display
  6. Exit
  Enter your choice:1
  Enter the data to insert:30
  1. Enqueue at front
  2. Enqueue at rear
  3. Dequeue at front
  4. Dequeue at rear
  5. Display
  6. Exit
  Enter your choice:5
  30 20 10 
  1. Enqueue at front
  2. Enqueue at rear
  3. Dequeue at front
  4. Dequeue at rear
  5. Display
  6. Exit
  Enter your choice:2
  Enter ur data to insert:40
  1. Enqueue at front
  2. Enqueue at rear
  3. Dequeue at front
  4. Dequeue at rear
  5. Display
  6. Exit
  Enter your choice:5
  30 20 10 40 
  1. Enqueue at front
  2. Enqueue at rear
  3. Dequeue at front
  4. Dequeue at rear
  5. Display
  6. Exit
  Enter your choice:3 
  1. Enqueue at front
  2. Enqueue at rear
  3. Dequeue at front
  4. Dequeue at rear
  5. Display
  6. Exit
  Enter your choice:5
  20 10 40 
  1. Enqueue at front
  2. Enqueue at rear
  3. Dequeue at front
  4. Dequeue at rear
  5. Display
  6. Exit
  Enter your choice:4
  1. Enqueue at front
  2. Enqueue at rear
  3. Dequeue at front
  4. Dequeue at rear
  5. Display
  6. Exit
  Enter your choice:5
  20 10 
  1. Enqueue at front
  2. Enqueue at rear
  3. Dequeue at front
  4. Dequeue at rear
  5. Display
  6. Exit
  Enter your choice:6




5 comments: