-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueue.c
More file actions
84 lines (71 loc) · 1.76 KB
/
Copy pathQueue.c
File metadata and controls
84 lines (71 loc) · 1.76 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
#include <stdio.h>
#define MAXSIZE 5
int queue[MAXSIZE], front = -1, rear = -1;
void insert(int item) {
if (rear == MAXSIZE - 1) {
printf("\nOverflow");
} else {
rear = rear + 1;
queue[rear] = item;
if (front == -1) {
front = rear;
}
printf("\nInserted: %d", item);
}
}
int delete() {
int item = 0;
if (front == -1) {
printf("\nUnderflow");
return -1;
} else {
item = queue[front];
if (front == rear) {
front = rear = -1;
} else {
front = front + 1;
}
}
return item;
}
void traverse() {
if (front == -1) {
printf("\nQueue is empty");
} else {
printf("\nQueue elements: ");
for (int i = front; i <= rear; i++) {
printf("%d ", queue[i]);
}
}
}
int main() {
int choice1, choice2, item;
do {
printf("\n\nEnter choice:\n1 - Insert\n2 - Delete\n3 - Traverse\n4 - Exit\n");
printf("Enter your choice: ");
scanf("%d", &choice1);
switch (choice1) {
case 1:
printf("\nInput item: ");
scanf("%d", &item);
insert(item);
break;
case 2:
item = delete();
if (item != -1)
printf("\nDeleted item = %d", item);
break;
case 3:
traverse();
break;
case 4:
printf("\nExiting program...");
return 0;
default:
printf("\nInvalid choice.");
}
printf("\nInput 1 to continue, 0 to exit: ");
scanf("%d", &choice2);
} while (choice2 == 1);
return 0;
}