Skip to main content

CIRCULAR QUEUE

/**
    Program Name: Circular Queue

    Description: Circular Queue using Array

    Author:  Tauqirul Haque
       
*/


int front = -1;  //This is the Initial Condition
int rear = -1;

#define SIZE 5

int queue[SIZE];

void deleteElement();
void insertElement();
void displayElement();

void main()
{
    int ch;
    while(ch !=4)
    {
        printf("\n\t\t1. Insert into queue..\n");
        printf("\t\t2. Delete From Queue...\n");
        printf("\t\t3. Diplay Queue...\n");
        printf("\t\t4. Exit Program ...\n");
       
        printf("Enter Your Choice #  ");
        scanf("%d",&ch);
       
        switch(ch)
        {
            case 1:
                    insertElement();
                    break;
            case 2:
                    deleteElement();
                    break;
            case 3:
                    displayElement();
                    break;
            case 4:
                    exit(0);
        }
    }
}

void insertElement()
{
    int item;
   
    printf("Enter The Item You want to Insert :  ");
    scanf("%d",&item);
   
    if((front ==0 && rear == SIZE -1) || (front == rear + 1))
    {
        printf("\nQUEUE Overflow .. \n\n");
        return;
    }
   
    if(front == -1)
    {
        front = rear = 0;
    }
    else
    {
        if(rear == SIZE - 1)
        {
            rear = 0;
        }
        else
        {
            rear++;
        }
    }
   
    queue[rear] = item;
   
    printf("\nRear = %d and Front = %d ", rear,front);
   
}

void deleteElement()
{
    if(front==-1)
    {
        printf("\nUnderFlow ... \n");
        return;
    }
   
    int item = queue[front];
    if(front==rear)
    {
        front =  -1;
        rear = -1;
        printf("The Item Deleted is :  %d  ",item );
        return;
    }
   
    if(front == SIZE -1)
    {
        front = 0;
    }
    else
    {
        printf("The Item Deleted is :  %d  ",item );
        front++;
    }
    printf("\nRear = %d and Front = %d ", rear,front);
   
}

void displayElement()
{
    if(front == -1)
    {
        printf("\nThe Queue is Empty .. ");
        return;
    }
    for(int i=front; i<=rear; i++)
    {
        printf("%4d", queue[i]);
    }
}
       
      

Comments

Popular posts from this blog

Singly Linked List

/**     Program Name: Singly Linked List     Description: This Program is for Implemeting Singly Linked List     Author:  Tauqirul Haque         */ struct Linklist {     int item;     struct Linklist *next; }; typedef struct Linklist node; void insertAtBeginning(node **); void createAppendNode(node **); void insertInMiddle(node **); void deleteNode(node **); void displayNode(node **); void countNode(node **);  void searchElement(node **); void reverse(node **); void main() {     node *head = NULL;     int choice = 0;     while(choice != 9)     {             printf("\n\t\t\t1. Add Node At The Beginning ");     printf("\n\t\t\t2. Insert Element in the Middle ");     printf("\n\t\t\t3. Append New Node "); ...

FINDING FACTORIAL OF A NUMBER

/**     Program Name: FINDING FACTORIAL     Description: This Program finds a Factorial of a Given Number     Author:  Tauqirul Haque         */ long fact(long n); void main() {     long n;     printf("Enter N : ");     scanf("%d",&n);         if(n < 0)   //if its a neg number then changing the sign     {         n = -n;     }         printf("The fact of %ld  =  %ld \n\n",n,fact(n)); } long fact(long n) {     if(n==0 || n==1)     {         return 1;     }     else     {         return n*fact(n-1);     } }

BUBBLE SORT

/**     Program Name: BUBBLE SORT     Description: This Program sorts a Given Array in Ascending Order     Author:  Tauqirul Haque         */ #define SIZE 10 void bubbleSort(int data[SIZE]); void displayElement(int data[SIZE]); void main() {     int data[SIZE] = { 45,34,66,89,45,34,76,22,79, 12};         printf("\nThe Original Array Before Sorting ... ");     displayElement(data);         printf("\nArray After Sorting ... ");     bubbleSort(data);     displayElement(data);     } void displayElement(int data[SIZE]) {     int i;     for(i=0; i     {         printf("\nData[%d]  =  %d",i,data[i]);     }     printf("\n"); } void ...