-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathqueue.c
73 lines (70 loc) · 1.11 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
#include <stdio.h>
#include<stdlib.h>
#define MAX 50
int queue[MAX];
int rear = - 1;
int front = - 1;
int main()
{
int choice;
while (1)
{
printf("1.Insert element to queue \n");
printf("2.Delete element from queue \n");
printf("3.Display all elements of queue \n");
printf("4.Quit \n");
printf("Enter your choice : ");
scanf("%d", &choice);
switch (choice)
{
case 1:
{
int num;
if (rear == MAX - 1)
printf("Queue Overflow \n");
else
{
if (front == - 1)
front = 0;
printf("Inset the element in queue : ");
scanf("%d", &num);
rear = rear + 1;
queue[rear] = num;
}
break;
}
case 2:
{
if (front == - 1 || front > rear)
{
printf("Queue Underflow \n");
}
else
{
printf("Element deleted from queue is : %d\n", queue[front]);
front = front + 1;
}
break;
}
case 3:
{
int i;
if (front == - 1)
printf("Queue is empty \n");
else
{
printf("Queue is : \n");
for (i = front; i <= rear; i++)
printf("%d ", queue[i]);
printf("\n");
}
break;
}
case 4:
exit(1);
default:
printf("Wrong choice \n");
}
}
return 0;
}