-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue_linkedlist.cpp
137 lines (123 loc) · 1.86 KB
/
queue_linkedlist.cpp
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# include <iostream>
using namespace std;
class Node
{
public:
int data;
Node *next;
Node(int value)
{
this->data=value;
this->next=NULL;
}
};
class Queue
{
Node *front;
Node *rear;
public:
Queue()
{
front=NULL;
rear=NULL;
}
void enqueue();
void dequeue();
void display();
};
int main()
{
int choice;
Queue Qu;
do
{
cout<<"\nMenu "<<endl;
cout<<"press 1. To push element in the Queue \n";
cout<<"press 2. To display element of Queue \n";
cout<<"press 3. to delete element from a Queue\n";
cout<<"press 4. to exit\n";
cout<<"\n enter your choice: ";
cin>>choice;
switch(choice)
{
case 1:
Qu.enqueue();
break;
case 2:
Qu.display();
break;
case 3:
Qu.dequeue();
break;
case 4:
break;
default:
cout<<"you have enterd wrong choice \n";
}
}while(choice!=4);
}
void Queue::enqueue()
{
int info;
cout<<"Enter elements in the queue:";
cin>>info;
Node *newnode= new Node(info);
//if(front==NULL &&rear==NULL)
if(rear==NULL)
{
front=newnode;
rear=newnode;
}
else
{
rear->next=newnode;
rear=newnode;
}
}
void Queue::dequeue()
{
Node *temp;
if(front==NULL)
{
cout<<"Sorry the queue is empty";
}
else if(front==rear)//There is only one node
{
temp=front;
cout<<front->data<<" is going to be deleted from the queue";
delete(temp);
front=NULL;
rear=NULL;
}
else
{
temp=front;
cout<<front->data<<"is going to be deleted from the queue";
front=front->next;
delete(temp);
}
display();
}
void Queue::display()
{
Node *temp=front;
if(front==NULL)
{
cout<<"\n Queue is empty, there is no Node to display";
}
else
{
cout<<"\n elements in the queue are as follows:\n";
/*while(temp!=rear)
{
cout<<temp->data<<"\t";
temp=temp->next;
}
cout<<rear->data;*/
while(temp!=NULL)
{
cout<<temp->data<<"\t";
temp=temp->next;
}
}
}