-
Notifications
You must be signed in to change notification settings - Fork 2
/
queue_2.cpp
108 lines (102 loc) · 1.54 KB
/
queue_2.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
/* Program to display list list implemented queue
made by : rakesh kumar
*/
#include<iostream>
#include<conio.h>
using namespace std;
struct node{
int data;
node *ptr;
};
class queue{
node *front,*rear,*temp,*y;
public:
queue(){
front=rear=NULL;
}
void add_node();
void delete_node();
void show_data();
};
void queue::add_node(){
if(rear==NULL)
{
rear = new(node);
cout<<"Enter value :";
cin>>rear->data;
rear->ptr=NULL;
front = rear;
}
else
{
rear->ptr = new(node);
rear = rear->ptr;
cout<<"Enter value :";
cin>>rear->data;
rear->ptr = NULL;
}
return;
}
void queue::delete_node(){
if(front==NULL)
{
cout<<"Queue empty";
getch();
}
else
{
temp = front;
front = front->ptr;
delete(temp);
}
return;
}
void queue::show_data()
{
if(front==NULL)
{
cout<<"Queue empty";
getch();
}
else
{
y = front;
while(y!=NULL)
{
cout<<y->data<<"\t";
y = y->ptr;
}
getch();
}
return;
}
int main(){
queue q;
int choice;
do{
system("cls");
cout<<"\n\n\n\t\t QUEUE MENU";
cout<<"\n\n\n\t\t1. Add Node";
cout<<"\n\n\n\t\t2. Delete Node";
cout<<"\n\n\n\t\t3. Show contents";
cout<<"\n\n\n\t\t4. Exit";
cout<<"\n\n\n\n\t\t Enter your choice (1..4) :";
cin>>choice;
switch(choice)
{
case 1: q.add_node();
break;
case 2:
q.delete_node();
break;
case 3:
q.show_data();
break;
case 4:
break;
default:
cout<<"\n\n Wrong choice...Try again";
}
}while(choice!=4);
return 0;
}