-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcircular queue
More file actions
86 lines (79 loc) · 1.56 KB
/
circular queue
File metadata and controls
86 lines (79 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include<stdio.h>
#include<conio.h>
#define n 5
int queue[n];
int front =-1;
int rear=-1;
// to perform the enqueue operation
void enqueue(int x){
if(front == -1 && rear == -1){
front =rear = 0;
queue[rear]=x;
}
else if((rear+1)%n == front){
printf("\nThe circular queue is full.");
}
else {
rear=(rear+1)%n;
queue[rear]=x;
}
}
// to perform the dequeue operation
void deque(){
if(front == -1 && rear==-1){
printf("\nUnderflow condition");
}
else if(front == rear){
front = rear =-1;
}
else{
printf("\nThe element deleted from the queue is %d",queue[front]);
front =(front+1)%n;
}
}
// displaying the element of the queue
void display(){
int i =front;
if(front ==-1&&rear==-1){
printf("\nThe circular queue is empty .");
}
else{
while(i!=rear){
printf("\n%d",queue[i]);
i=(i+1)%n;
}
printf("\n%d",queue[rear]);
}
}
void main(){
int choice;
int item;
char ans;
do {
printf("\n===============MAIN MENU======================");
printf("\n1:ENQUEUE\n2:DEQUEUE\n3:DISPLAY");
printf("\nEnter choice");
scanf("%d",&choice);
switch(choice){
case 1 :
printf("\nAdding .........");
printf("\nEnter the element to be inserted:");
scanf("%d",&item);
enqueue(item);
break;
case 2:
printf("\nDeleting.............");
deque();
break;
case 3:
printf("\nDisplaying ..............");
display();
break;
default:
printf("\nWrong selection ");
break;
}
printf("\nDo you want to continue y/n:");
ans = getche();
}while(ans == 'y'||ans == 'Y');
}