-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProg9.c
336 lines (312 loc) · 7.52 KB
/
Prog9.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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
/* ---------------PROBLEM STATEMENT ---------------
Implement a circular queue using arrays and linked list.
*/
#include <stdio.h>
#include <stdlib.h>
#define SIZE 5
void mainMenu();
// ----------------------- Queue using Array ------------------------------
int cir_queue[SIZE];
int front = -1;
int rear = -1;
int isFull()
{
if ((front == rear + 1) || (front == 0 && rear == SIZE - 1))
return 1;
return 0;
}
int isEmpty()
{
if (front == -1)
return 1;
return 0;
}
void display()
{
if (isEmpty())
{
printf("Queue is empty.\n");
}
else
{
int i = front;
do
{
printf("%d ", cir_queue[i]);
i = (i + 1) % SIZE;
} while (i != (rear + 1) % SIZE);
printf("\n");
}
}
void Enqueue()
{
int x;
printf("Enter the data : ");
scanf("%d", &x);
if (isEmpty())
{
front++;
}
else if (isFull())
{
printf("\nOVERFLOW!!\n");
return;
}
rear = (rear + 1) % SIZE;
cir_queue[rear] = x;
}
void Dequeue()
{
if (front == -1)
{
printf("\nUNDERFLOW!!\n");
return;
}
if (front == rear)
{
printf("Dequeued Element : %d\n", cir_queue[front]);
front = -1;
rear = -1;
}
else
{
printf("Dequeued Element : %d\n", cir_queue[front]);
front = (front + 1) % SIZE;
}
}
// ----------------------- Queue using Linked List ------------------------------
typedef struct Node
{
int info;
struct Node *next;
} Node;
Node *head = NULL;
Node *tail = NULL;
int isEmptyLL()
{
if (head == NULL)
return 1;
return 0;
}
void displayLL()
{
if (isEmptyLL())
{
printf("Queue is empty.\n");
return;
}
Node *temp = head;
do
{
printf("%d ", temp->info);
temp = temp->next;
} while (temp != head);
printf("\n");
}
void EnqueueLL()
{
int x;
printf("Enter the data : ");
scanf(" %d", &x);
Node *newNode = (Node *)malloc(sizeof(Node));
newNode->info = x;
if (head == NULL)
{
head = newNode;
tail = newNode;
newNode->next = head;
return;
}
newNode->next = head;
tail->next = newNode;
tail = newNode;
}
void DequeueLL()
{
if (head == NULL)
{
printf("\nUNDERFLOW!\n");
return;
}
if (head == tail)
{
printf("Dequeued Element : %d\n", head->info);
head = NULL;
tail = NULL;
return;
}
printf("Dequeued Element : %d\n", head->info);
Node *temp = head;
head = head->next;
tail->next = head;
free(temp);
}
// ------------------------------ Menu of the queue using Array ------------------------------
void Queue_Array()
{
int choice;
char c;
while (1)
{
printf("\n************* Circular Queue using Array ****************\n");
printf("\nPerform operations on the Circular Queue:");
printf("\n1. Enqueue the element\n2. Dequeue the element\n3. Check if Queue is empty\n4. Check if Queue is Full\n5. Show all elements of Queue\n6. Back to Main Menu\n7. Exit");
printf("\n\nEnter the choice: ");
scanf("%d", &choice);
switch (choice)
{
case 1:
Enqueue();
printf("\nCircular Queue after Enqueue : ");
display();
break;
case 2:
Dequeue();
printf("\nCircular Queue after Dequeue : ");
display();
break;
case 3:
if (isEmpty())
{
printf("Queue is empty\n");
}
else
{
printf("Queue is not empty\n");
}
break;
case 4:
if (isFull())
{
printf("Queue is Full\n");
}
else
{
printf("Queue is not Full\n");
}
break;
case 5:
printf("Elements in Circular Queue : ");
display();
break;
case 6:
printf("Are you sure you want to go back to Main Menu?\n**** Remember you'll lost all your data **** (y/n): ");
scanf(" %c", &c);
if (c == 'y')
mainMenu();
else if (c == 'n')
continue;
else
printf("\nInvalid Input!\n");
break;
case 7:
printf("\nAre you sure you want to exit program? (y/n) : ");
scanf(" %c", &c);
if (c == 'y')
exit(0);
else if (c != 'n')
printf("\nInvalid Input!\n");
break;
default:
printf("Invalid choice. Please try again.\n");
}
}
}
// ------------------------------ Menu of the queue using Linked List ------------------------------
void Queue_LL()
{
int choice;
char c;
while (1)
{
printf("\n************* Circular Queue using Linked List ****************\n");
printf("\nPerform operations on the Circular Queue:");
printf("\n1. Enqueue the element\n2. Dequeue the element\n3. Check if Queue is empty\n4. Show all elements of Queue\n5. Back to Main Menu\n6. Exit");
printf("\n\nEnter the choice: ");
scanf("%d", &choice);
switch (choice)
{
case 1:
EnqueueLL();
printf("\nCircular Queue after Enqueue : ");
displayLL();
break;
case 2:
DequeueLL();
printf("\nCircular Queue after Dequeue : ");
displayLL();
break;
case 3:
if (isEmptyLL())
{
printf("Queue is empty\n");
}
else
{
printf("Queue is not empty\n");
}
break;
case 4:
printf("Elements in Circular Queue : ");
displayLL();
break;
case 5:
printf("Are you sure you want to go back to Main Menu?\n**** Remember you'll lost all your data **** (y/n): ");
scanf(" %c", &c);
if (c == 'y')
mainMenu();
else if (c == 'n')
continue;
else
printf("\nInvalid Input!\n");
break;
case 6:
printf("\nAre you sure you want to exit program? (y/n) : ");
scanf(" %c", &c);
if (c == 'y')
exit(0);
else if (c != 'n')
printf("\nInvalid Input!\n");
break;
default:
printf("Invalid choice. Please try again.\n");
}
}
}
void mainMenu()
{
int choice;
char c;
while (1)
{
printf("\n************* MAIN MENU ****************\n");
printf("\nChoose type of Queue:");
printf("\n1. Queue implemented using Array\n2. Queue implemented using Linked List\n3. Exit");
printf("\n\nEnter the choice: ");
scanf("%d", &choice);
switch (choice)
{
case 1:
Queue_Array();
break;
case 2:
Queue_LL();
break;
case 3:
printf("\nAre you sure you want to exit program? (y/n) : ");
scanf(" %c", &c);
if (c == 'y')
exit(0);
else if (c != 'n')
printf("\nInvalid Input!\n");
break;
default:
printf("Invalid choice. Please try again.\n");
}
}
}
int main()
{
mainMenu();
return 0;
}