-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue.c
87 lines (79 loc) · 1.71 KB
/
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
#include <stdio.h>
#include <stdlib.h>
#define MAX 20
int queue[MAX], front = -1, rear = -1;
int isEmpty() {
return (front == -1);
}
int isFull() {
return ((rear + 1) % MAX == front);
}
int enqueue() {
if (isFull()) {
printf("Queue Overflow\n");
return 0;
}
if (isEmpty()) {
front = 0;
}
rear = (rear + 1) % MAX; // Circular increment
printf("Enter the element to be inserted: ");
scanf("%d", &queue[rear]);
printf("Element inserted successfully\n");
return 0;
}
int dequeue() {
if (isEmpty()) {
printf("Queue Underflow\n");
return 0;
}
printf("Deleted element: %d\n", queue[front]);
if (front == rear) {
front = rear = -1;
} else {
front = (front + 1) % MAX;
}
return 0;
}
int display() {
if (isEmpty()) {
printf("Queue is empty\n");
return 0;
}
printf("Queue elements:\n");
int i = front;
while (1) {
printf("%d\n", queue[i]);
if (i == rear) {
break;
}
i = (i + 1) % MAX;
}
return 0;
}
int main(void) {
int choice;
while (1) {
printf("\n\nQueue Menu:");
printf("\n1. Enqueue\n2. Dequeue\n3. Display\n4. Exit");
printf("\nSelect Menu Option: ");
scanf("%d", &choice);
switch (choice) {
case 1:
enqueue();
break;
case 2:
dequeue();
break;
case 3:
display();
break;
case 4:
exit(0);
break;
default:
printf("Wrong Menu Choice.\n");
}
}
return 0;
}