-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueue.c
More file actions
56 lines (53 loc) · 849 Bytes
/
Copy pathQueue.c
File metadata and controls
56 lines (53 loc) · 849 Bytes
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
#include<stdio.h>
#include<stdlib.h>
#define SIZE 5
int Queue[SIZE];
int Front = 0;
int Rear = 0;
void ENQUEUE(int val);
int DEQUEUE();
void PRINT();
int main(){
ENQUEUE(1);
ENQUEUE(2);
ENQUEUE(3);
ENQUEUE(4);
ENQUEUE(5);
PRINT();
DEQUEUE();
DEQUEUE();
PRINT();
}
void ENQUEUE(int val){
if(Rear == SIZE){
printf("***Queue OverFlow***\n");
}else{
Queue[Rear++] = val;
}
}
int DEQUEUE(){
int val,i;
if(Front == Rear){
printf("***Queue is Empty***\n");
}else{
printf("Deleted : %d\n",Queue[Front]);
val = Queue[Front];
for(i = 0; i <= Rear; i++){
Queue[i] = Queue[i+1];
}
Rear--;
}
return val;
}
void PRINT(){
printf("The Elements in Queue are: \n");
if(Front == Rear){
printf("***Queue is Empty***\n");
}else{
int i;
for(i = 0; i < Rear; i++){
printf("%d ",Queue[i]);
}
}
printf("\n");
}