-
Notifications
You must be signed in to change notification settings - Fork 72
/
Dequeue .c
244 lines (238 loc) · 4.77 KB
/
Dequeue .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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define max 10
int deque[max];
static int item, option;
int left = -1;
int right = -1;
void inputdeque(void);
void outputdeque(void);
void insertright();
void insertleft();
void deleteright();
void deleteleft();
void displaydeque();
int main()
{
int x;
do
{
printf("\n--------MENU--------\n");
printf("1.For Input Restricted Dequeue:\n");
printf("2.For Output Restricted Dequeue:\n");
printf("Enter Your Choice:\n");
scanf("%d", &x);
switch (x)
{
case 1:
left = right = -1;
inputdeque();
break;
case 2:
left = right = -1;
outputdeque();
break;
}
} while (x <= 2);
}
void inputdeque()
{
do
{
printf("** Input Restricted Dequeue **\n");
printf("1.To Insert At Right\n");
printf("2.To Delete From Left\n");
printf("3.To Delete From Right\n");
printf("4.To Dispaly Input restricted\n");
printf("5.To Quit\n");
printf("Enter Your Choice\n");
scanf("%d", &option);
switch (option)
{
case 1:
insertright();
break;
case 2:
deleteleft();
break;
case 3:
deleteright();
break;
case 4:
displaydeque();
break;
}
} while (option <= 4);
}
void outputdeque()
{
do
{
printf("** Output Restricted Dequeue Operation**\n");
printf("1.To Insert At Right\n");
printf("2.To Insert At Left\n");
printf("3.To Delete From Left\n");
printf("4.To Display\n");
printf("5.To Quit\n");
printf("Enter Your Choice\n");
scanf("%d", &option);
switch (option)
{
case 1:
insertright();
break;
case 2:
insertleft();
break;
case 3:
deleteleft();
break;
case 4:
displaydeque();
break;
}
} while (option <= 4);
}
void insertright()
{
printf("Enter item you want to insert\n");
scanf("%d", &item);
if (left == right + 1)
{
printf("Overflow\n");
exit(0);
}
if (left == -1 && right == -1)
{
left = 0;
right = 0;
}
else
{
if (right == max - 1)
{
right = 0;
}
else
{
right = right + 1;
}
}
deque[right] = item;
printf("\n**Item inserted at right successfully**\n");
}
void insertleft()
{
printf("Enter item you want to insert\n");
scanf("%d", &item);
if ((left == right + 1) || (left == 0 && right == max-1))
{
printf("Overflow\n");
exit(0);
}
if (left == -1 && right == -1)
{
left = 0;
right = 0;
}
else
{
if (left == 0)
{
left = max - 1;
}
else
{
left = left - 1;
}
}
deque[left] = item;
printf("\n**Item inserted at left successfully**\n");
}
void deleteright()
{
if (left == -1 && right == -1)
{
printf("underflow\n");
exit(0);
}
item = deque[right];
if (left == right)
{
left = -1;
right = -1;
}
else
{
if (right == 0)
{
right = max - 1;
}
else
{
right = right - 1;
}
}
printf("\n**Item deleted successfully**\n");
}
void deleteleft()
{
if (left == -1 && right == -1)
{
printf("underflow\n");
exit(0);
}
item = deque[left];
if (left == right)
{
left = -1;
right = -1;
}
else
{
if (left == max - 1)
{
left = 0;
}
else
{
left = left + 1;
}
}
printf("\n**Item deleted successfully**\n");
}
void displaydeque()
{
int i;
if (left == -1 && right == -1)
{
printf("underflown\n");
exit(0);
}
printf("Elements in the queue are:\n");
i = left;
if (left <= right)
{
while (i <= right)
{
printf("Item = %d\n", deque[i]);
i++;
}
}
else
{
while (i <= max - 1)
{
printf("%d\n", deque[i]);
i++;
}
i = 0;
while (i <= right)
{
printf("%d\n", deque[i]);
i++;
}
printf("\n");
}
}