-
Notifications
You must be signed in to change notification settings - Fork 1
/
circular_queue.c
111 lines (104 loc) · 1.66 KB
/
circular_queue.c
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#include<stdio.h>
#include<stdlib.h>
int size,x,items[50],i,n,choice;
int front=-1;
int rear=-1;
void enqueue();
void dequeue();
void display();
int isempty();
int isfull();
void menu();
void main()
{
printf("Enter the size of the queue:");
scanf("%d",&n);
menu();
}
void menu()
{
printf("\n Menu\n1.Enqueue\n2.Dequeue\n3.Display\n4.Exit\n");
printf("\nEnter your choice:");
scanf("%d",&choice);
switch(choice)
{
case 1:enqueue();
break;
case 2:dequeue();
break;
case 3:display();
break;
case 4:exit(1);
break;
default:printf("Enter a valid choice");
menu();
}
}
void enqueue()
{
if(isfull())
{
printf("\nQueue is full");
menu();
}
else
{
if(front==-1)
front=0;
rear=(rear+1)%n;
printf("\nEnter element:");
scanf("%d",&x);
items[rear]=x;
printf("\nInserted element is %d",x);
}
menu();
}
void dequeue()
{
if(isempty())
{
printf("\nQueue is empty");
menu();
}
else
{
x=items[front];
if(front==rear)
{
front=-1;
rear=-1;
}
else
front=(front+1)%n;
printf("\n Deleted element is %d",x);
}
menu();
}
void display()
{
if(isempty())
printf("\n Empty Queue\n");
else
{
for(i=front; i!= rear;i=(i+1)%n)
{
printf("%d",items[i]);
}
printf("%d\t",items[i]);
}
menu();
}
int isfull()
{
if((front==rear+1)||(front==0&&rear==n-1))
return 1;
else
return 0;
}
int isempty()
{
if(front==-1)
return 1;
else
return 0;
}