-
Notifications
You must be signed in to change notification settings - Fork 0
/
queueLinkedList.cpp
78 lines (73 loc) · 1.1 KB
/
queueLinkedList.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
#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;
}
}