-
Notifications
You must be signed in to change notification settings - Fork 0
/
Queue-Singly-Linked-List.c
100 lines (86 loc) · 1.83 KB
/
Queue-Singly-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
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
99
100
#include<stdio.h>
#include<stdlib.h>
struct node{
int data;
struct node *next;
};
struct node *front=NULL,*rear=NULL;
void dequeue();
void enqueue();
void traversal();
void main(){
int a,b;
while(1){
printf("\n---------------Queue Menu------------\n");
printf("1. Insertion\n 2. Deletion\n 3. Traversal\n 0. exit\n enter the option\n ");
scanf("%d",&b);
switch(b){
case 1: enqueue();
break;
case 2: dequeue();
break;
case 3: traversal();
break;
case 4: exit(1);
default: printf("invalid option\n");
break;
}
}
}
void enqueue(){
struct node *temp, *newnode;
newnode=(struct node *)malloc(sizeof(struct node));
printf("enter the element\n");
scanf("%d",&newnode->data);
newnode->next=NULL;
if(front==NULL&&rear==NULL){
front=newnode;
rear=newnode;
}
else{
temp=front;
while(temp->next!=NULL){
temp=temp->next;
}
temp->next=newnode;
rear=newnode;
}
temp=front;
while(temp!=NULL){
printf("%d\t",temp->data);
temp=temp->next;
}
}
//deletion at the end
void dequeue(){
struct node *temp=front;
if(front->next==NULL){
front=NULL;
rear=front;
}
if(front==NULL&rear==NULL){
printf("Queue is empty Deletion is not Possible\n");
return 0;
}
else{
front=temp->next;
}
temp=front;
while(temp!=NULL){
printf("%d\t",temp->data);
temp=temp->next;
}
}
void traversal(){
struct node *temp;
temp=front;
if(front==NULL){
printf("\nNO Element Found\n");
}
else{
while(temp!=NULL){
printf("%d\t",temp->data);
temp=temp->next;
}
}
}