forked from ishita0302/Code-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCircular queue implementation using link list.c
93 lines (86 loc) · 1.37 KB
/
Circular queue implementation using link list.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
#include <stdio.h>
#include <stdlib.h>
struct node
{
int data;
struct node*link;
}*rear,*front;
void enq(int n);
void deq();
void print();
int main()
{
int item,del,ch;
rear=front=NULL;
do
{ printf("enter the numbers: ");
scanf("%d", &item);
enq(item);
printf("\npress 1 to enter more and 0 to stop: ");
scanf("%d", &ch);
}while(ch!=0);
print();
deq();
deq();
print();
return 0;
}
//enqueue data
void enq(int n)
{
struct node*a;
a=(struct node*)malloc(sizeof(struct node));
a->data=n;
a->link=NULL;
if((rear==NULL)&&(front==NULL))
{
rear=a;
front=a;
}
else
{
rear->link=a;
rear=a;
a->link=front;
}
}
//dequeue data
void deq()
{
int n;
struct node*b;
b=front;
if((front==NULL)&&(rear==NULL))
{
printf("\nqueue is empty.");
}
else if(front==rear)
{
n=b->data;
front=rear=NULL;
free(b);
}
else
{
n=b->data;
front=front->link;
rear->link=front;
free(b);
}
printf("\ndeleted: %d", n);
}
//printing queue
void print()
{
struct node* c;
c = front;
if((front==NULL)&&(rear==NULL))
printf("\nQueue is Empty");
else
{
do
{ printf("\n%d",c->data);
c = c->link;
}while(c != front);
}
}