UrbanPro
true

Take BTech Tuition from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Circular Queue

B
Balaji K
16/11/2020 0 0

#include <stdio.h>

#include <stdlib.h>

#define MAX 5

char a[MAX];

int front = 0, rear = -1, count = 0;

 

void insert()

{

  char item;

if(count==MAX)

{

   printf("\n\t\tCircular Queue Overflow");

   return;

   }

   else

   {

   printf("\n\t Enter the Element: ");

   scanf("%s",&item);

   rear=(rear+1)%MAX;

   a[rear] = item;

   count = count + 1;

   }

   }

 

   void del()

   {

   char item;

   if(count == 0)

   {

      printf("\n\t\tCircular Queue Underflow");

      return;

    }

   else

   {

   item = a[front];

   front = (front+1)%MAX;

   count = count - 1;

   printf("\n\tDeleted Item = %c",item);

   }

   }

 

 

   void display()

   {

   int i,j=front;

   if(count == 0)

     {

     printf("\n\t\tCircular Queue is Empty");

     return;

     }

   else

   {

   printf("\n\tFront = %d  Rear = %d  Count = %d\n",front,rear,count);

   printf("\n\tCircular Queue Elements are: \n\n");

    for(i=1;i<=count;i++)

   {

     printf("\t%d",j);

     j = (j+1)%MAX;

     }

   printf("\n");

   j = front;

   for(i=1;i<=count;i++)

   {

     printf("\t%c",a[j]);

     j = (j+1)%MAX;

     }

     }

     }

 

     int main()

     {

     int ch;

     do

     {

     printf("\n\n\t\tCircular Queue\n\n");

     printf("\t<1> Insert\n");

     printf("\t<2> Delete\n");

     printf("\t<3> Display\n");

     printf("\t<4> Exit\n\n");

     printf("\t    Enter Your Choice: ");

     scanf("%d",&ch);

     switch(ch)

     {

     case 1: insert();

             display();

             break;

 

     case 2: del();

             display();

             break;

     case 3: display();

             break;

     case 4: exit(0);

 

     default: printf("\n\tInvalid Choice")                          ;

              break;

     }

     } while(ch!=5);

     return 0;

0 Dislike
Follow 1

Please Enter a comment

Submit

Other Lessons for You

What Are The Two Forms Of #Include?
There are two variants of #include. The one is #include and the other one is #include”file”. In general the first form that is #include is used to include system defined header files which...

Lets Talk About Software Design-patterns
What are Design Patterns? Design Pattern is a used and tested solution for a known problem. In simple words, you can say a general reusable solution to a commonly occurring problem within a given context...

Binary and Complete Binary Tree
Binary Tree - In a binary tree, every node except leaf node contains almost two children. - if every internal node contains precisely two children, then it is called 2-array binary tree. - leaves = Internal...

Getting A Bit Deeper Into Time Complexity Analysis
What is Time Complexity Analysis? In the last blog, you got a rough idea about the Time Complexity and that was all about to judge how fast the algorithm can run, or putting it in another way, how much...

Java 9 , the new beginning
Java 9 is here! A major feature release in the Java Platform Standard Edition is Java 9 Lets see what more it offers more than its previous versions Java platform module JEP 223 : New version...
G

GCC

0 0
0
X

Looking for BTech Tuition Classes?

The best tutors for BTech Tuition Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Take BTech Tuition with the Best Tutors

The best Tutors for BTech Tuition Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more