-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathQueueInsertion.c
More file actions
90 lines (81 loc) · 1.63 KB
/
QueueInsertion.c
File metadata and controls
90 lines (81 loc) · 1.63 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
85
86
87
88
89
90
#include <stdio.h>
int q[100];
int front=-1;
int rear=-1;
void insert(int n)
{
if(front==-1 && rear==-1)
{
front=0;
rear=0;
q[rear]=n;
}
else if((rear+1)%100==front)
{
printf("\nqueue overflow");
}
else
{
rear=(rear+1)%100;
q[rear]=n;
}
}
int delete()
{
if((front==-1) && (rear==-1))
{
printf("\nQueue underflow");
}
else if(front==rear)
{
printf("\nthe element deleted is %d", q[front]);
front=-1;
rear=-1;
}
else
{
printf("\nthe element deleted is %d", q[front]);
front=(front+1)%100;
}
}
void display()
{
int i=front;
if(front==-1 && rear==-1)
{
printf("\nqueue is empty");
}
else
{
while(i<=rear)
{
printf("%d,", q[i]);
i=(i+1)%100;
}
}
printf("\n");
}
int main()
{
int ch=1,n;
while(ch!=0)
{
printf("\n1: Insert | 2: Delete | 3: Display\n ");
scanf(" %d", &ch);
switch(ch)
{
case 1: printf("\nEnter the element which is to be inserted:-");
scanf("%d", &n);
insert(n);
break;
case 2: delete();
break;
case 3: display();
break;
default: printf("\nEnter the correct choice");
ch =1;
break;
}
}
return 0;
}