forked from ishita0302/Code-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Queue implementation using link list.c
80 lines (73 loc) · 1.23 KB
/
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
#include <stdio.h>
#include <stdlib.h>
struct node
{
int data;
struct node*link;
}*rear,*front;
void enq(int n);
int deq();
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);
del=deq();
printf("\ndeleted: %d", del);
del=deq();
printf("\ndeleted: %d", del);
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)
{
rear=a;
front=a;
}
else
{
a->link=rear;
rear=a;
}
}
//dequeue data
int deq()
{
int n;
struct node*b=rear;
if(front==NULL)
{
printf("\nqueue is empty.");
return -1;
}
else
{
if(front==rear)
{
n=b->data;
front=rear=NULL;
free(b);
}
else
{
while(b->link->link!=NULL)
{ b=b->link;}
n=b->link->data;
free(b->link);
b->link=NULL;
}
}
return n;
}