-
Notifications
You must be signed in to change notification settings - Fork 0
/
QueueUsingArray.c
98 lines (85 loc) · 1.65 KB
/
QueueUsingArray.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
#include<stdio.h>
#include<stdlib.h>
#define MAX 10
typedef struct {
int qu[MAX];
int front;
int rear;
int count;
}q;
int isEmpty(q* q1){
if(q1->front > q1->rear){
return 1;
}
else if(q1->front ==-1 && q1->rear == -1){
return 1;
}
return 0;
}
int isFull(q *q1){
if(q1->rear==MAX){
return 1;
}
return 0;
}
void enq(q *q1,int val){
if(!isFull(q1)){
if(isEmpty(q1)){
q1->front++;
}
q1->qu[++q1->rear] = val;
q1->count++;
}
else{
printf("FULL\n");
}
}
int deq(q *q1){
int x;
if(isEmpty(q1)){
printf("EMPTY\n");
return -1;
}
else{
x = q1->qu[q1->front];
q1->front++;
q1->count--;
}
if(isEmpty(q1)){
q1->front =-1;
q1->rear =-1;
}
return x;
}
void disp(q *q1){
int i;
for(i=q1->front;i<q1->rear;i++){
printf("%d ",q1->qu[i]);
}
printf("%d\n",q1->qu[q1->rear]);
}
int main(){
q *q1=(q*)malloc(sizeof(q));
q1->front =-1;
q1->rear =-1;
q1->count =0;
printf("Enter \n1 to Insert\n2 to Delete\n3 to Display\n");
while(1){
printf("Your choice:: ");
int ch; int val;
scanf("%d",&ch);
switch(ch){
case 1: scanf("%d",&val);
enq(q1,val);
disp(q1);
break;
case 2:val = deq(q1);
printf("%d got delete!\n",val);
break;
case 3:disp(q1);
break;
default: printf("Enter a valid choice:: \n");
break;
}
}
}