- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueue_LinkedList.cpp
More file actions
Latest commit
87 lines (87 loc) · 1.84 KB
/
Copy pathQueue_LinkedList.cpp
File metadata and controls
87 lines (87 loc) · 1.84 KB
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
#include<iostream>
#include<malloc.h>
usingnamespacestd;
structnode {
int data;
structnode *next;
};
structnode *front = NULL, *rear = NULL;
structnode* temp;
voidInsert() {
int val;
cout<<"Insert the element in queue : "<<endl;
cin>>val;
if (rear == NULL)
{
rear = (structnode *)malloc(sizeof(structnode));
rear->next = NULL;
rear->data = val;
front = rear;
}
else
{
temp=(structnode *)malloc(sizeof(structnode));
rear->next = temp;
temp->data = val;
temp->next = NULL;
rear = temp;
}
}
voidDelete()
{
temp = front;
if (front == NULL)
{
cout<<"Underflow";
}
elseif(temp->next != NULL)
{
temp = temp->next;
cout<<"Element deleted from queue is : "<<front->data<<endl;
free(front);
front = temp;
}
else
{
cout<<"Element deleted from queue is : "<<front->data<<endl;
free(front);
front = NULL;
rear = NULL;
}
}
voidDisplay() {
temp = front;
if ((front == NULL) && (rear == NULL)) {
cout<<"Queue is empty"<<endl;
return;
}
cout<<"Queue elements are: ";
while (temp != NULL) {
cout<<temp->data<<"";
temp = temp->next;
}
cout<<endl;
}
intmain() {
int ch;
cout<<"1) Insert element to queue"<<endl;
cout<<"2) Delete element from queue"<<endl;
cout<<"3) Display all the elements of queue"<<endl;
cout<<"4) Exit"<<endl;
do {
cout<<"Enter your choice : ";
cin>>ch;
switch (ch) {
case1: Insert();
break;
case2: Delete();
break;
case3: Display();
break;
case4: cout<<"Exit"<<endl;
break;
default: cout<<"Invalid choice"<<endl;
}
} while(ch!=4);
return0;
}