-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcircular_queue.c
72 lines (68 loc) · 1.89 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
#include<stdio.h>
#include<stdlib.h>
int main() {
int c, item, front = -1, rear = -1;
int max;
printf("enter size of queue : ");
scanf("%d", &max);
int queue[max];
void enqueue(int item) {
if(front == -1 && rear == -1) {
front = rear = 0;
queue[rear] = item;
} else if((rear + 1) % max == front) {
printf("Queue is full\n");
} else {
rear = (rear + 1) % max;
queue[rear] = item;
}
}
void dequeue() {
if(front == -1 && rear == -1) {
printf("Queue is empty \n");
} else if(front == rear) {
printf("Element dequeued is:%d\n", queue[front]);
front = rear = -1;
} else {
printf("Element dequeued is:%d\n", queue[front]);
front = (front + 1) % max;
}
}
void display() {
int i = front;
if(front == -1 && rear == -1) {
printf("Queue is empty \n");
}
else {
printf("Elements in a queue are: ");
while(i != rear) {
printf("%d ", queue[i]);
i = (i + 1) % max;
}
printf("%d\n", queue[rear]);
}
}
int ch;
printf("\n1.Enqueue\n2.Dequeue\n3.Display\n4.Exit\n");
while(1){
printf("Enter your choice : ");
scanf("%d", &ch);
switch(ch) {
case 1:
printf("Enter the element to be inserted : ");
scanf("%d", &item);
enqueue(item);
break;
case 2:
dequeue();
break;
case 3:
display();
break;
case 4:
exit(0);
default:
printf("Invalid choice \n");
}
}
}