-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircular-queue.c
95 lines (85 loc) · 1.95 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
#include <stdio.h>
#include <stdlib.h>
#define SIZE 5
int queue[SIZE];
int front = -1, rear = -1;
int isFull() {
return ((rear + 1) % SIZE == front);
}
// Function to check if the queue is empty
int isEmpty() {
return (front == -1);
}
void CQinsertion(int value) {
if (isFull()) {
printf("Queue Overflow! Cannot insert %d\n", value);
return;
}
if (isEmpty()) {
front = rear = 0;
}
else {
rear = (rear + 1) % SIZE;
}
queue[rear] = value;
printf("Inserted %d\n", value);
}
int CQdeletion() {
if (isEmpty()) {
printf("Queue Underflow! Cannot dequeue\n");
return -1;
}
int data = queue[front];
if (front == rear) {
front = rear = -1;
}
else {
front = (front + 1) % SIZE;
}
printf("Deleted %d\n", data);
return data;
}
void displayCQ() {
if (isEmpty()) {
printf("Queue is empty\n");
return;
}
printf("Queue elements: ");
int i = front;
while (1) {
printf("%d ", queue[i]);
if (i == rear)
break;
i = (i + 1) % SIZE;
}
printf("\n");
}
int main() {
printf("\n---Circular Queue---\n");
int value;
while (1) {
printf("1.Insert\t2.Delete\t3.Display\t4.Exit\n");
int choice;
printf("Enter a choice: ");
scanf("%d", &choice);
switch (choice){
case 1:
printf("Enter the value to insert: ");
scanf("%d", &value);
CQinsertion(value);
break;
case 2:
CQdeletion();
break;
case 3:
displayCQ();
break;
case 4:
exit(0);
default:
printf("Invalid choice\n");
break;
}
}
return 0;
}