-
Notifications
You must be signed in to change notification settings - Fork 0
/
Queuestack.c
90 lines (84 loc) · 1.04 KB
/
Queuestack.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
#include<stdio.h>
#include<stdlib.h>
#define N 5
int stack1[N],stack2[N];
int top1=-1,top2=-1;
void enq(int);
void dq();
void push1(int);
void push2(int);
int pop1();
int pop2();
int count=0;
void display();
void enq(int val)
{
push1(val);
count++;
}
void push2(int val)
{
top2++;
stack2[top2]=val;
}
void push1(int val)
{
if(top1==N-1)
{
printf("Queue is full!!\n");
}
else
{
top1++;
stack1[top1]=val;
}
}
int pop1()
{
return stack1[top1--];
}
int pop2()
{
return stack2[top2--];
}
void deq()
{
if(top1==-1&&top2==-1)
{
printf("Queue is empty!!\n");
}
else
{
int i=0,b;
for(i=0;i<count;i++)
{
push2(pop1());
}
b=pop2();
count--;
for(i=0;i<count;i++)
{
push1(pop2());
}
}
}
void display()
{
int i;
for(i=0;i<=top1;i++)
{
printf("%d\n",stack1[i]);
}
}
void main()
{
deq();// queue is empty
enq(10);
enq(20);
enq(30);
enq(40);
enq(50);
enq(60);// queue is full
deq();
display(); // 20 30 40 50
}