-
Notifications
You must be signed in to change notification settings - Fork 1
/
Queue_using_linked_list.c
73 lines (67 loc) · 1.22 KB
/
Queue_using_linked_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
#include <stdio.h>
#include <stdlib.h>
struct Node
{
int data;
struct Node *next;
};
struct Node *f = NULL;
struct Node *r = NULL;
void linklisttreversal(struct Node *ptr)
{
while (ptr != NULL)
{
printf("%d->", ptr->data);
ptr = ptr->next;
}
}
void enqueue(int val)
{
struct Node *n = (struct Node *)malloc(sizeof(struct Node));
if (n == NULL)
{
printf("Queue Overflow\n");
}
else
{
n->data = val;
n->next = NULL;
if (f == NULL)
{
f = r = n;
}
else
{
r->next = n;
r = n;
}
}
}
int dequeue()
{
int val = -1;
struct Node *ptr = f;
if (f == NULL)
{
printf("Queue Underflow\n");
}
else
{
f = f->next;
val = ptr->data;
free(ptr);
}
return val;
}
int main()
{
// linklisttreversal(f);
printf("dequeue %d\n",dequeue());
enqueue(5);
enqueue(52);
enqueue(15);
enqueue(1);
printf("dequeue %d\n",dequeue());
linklisttreversal(f);
return 0;
}