-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathExpt_2_1_2.cpp
88 lines (88 loc) · 1.81 KB
/
Expt_2_1_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
#include<iostream>
using namespace std;
class Queue
{
public: //all public needed to access outside in main
string name;
int roll_number;
double total_marks;
Queue *next;
Queue()
{
name="Nishkarsh";
roll_number=41;
total_marks=256.60;
}
~Queue()
{
cout<<"Object Destroyed"<<endl;
}
void show()
{
cout<<endl;
cout<<"Name of the person is "<<name<<endl<<"Roll number of the person is "<<roll_number<<endl<<"Total marks of the person are "<<total_marks<<endl;
}
}*rear,*front,*node,*ptr,*p;
int main()
{
int quit=0;
cout<<"Hello! This is a program to demonstrate Queue implementation using Classes and Objects"<<endl;
node=new Queue;
cout<<"Enter the name of this person"<<endl;
cin>>node->name;
cout<<"Enter the roll number of this person"<<endl;
cin>>node->roll_number;
cout<<"Enter the total marks of this person"<<endl;
cin>>node->total_marks;
node->next=NULL;
front=node;
rear=node;
node->show();
cout<<endl;
cout<<"Let the party begins"<<endl;
do
{
cout<<"\t\t\t\tOption Menu"<<endl;
cout<<"1) Insert"<<endl;
cout<<"2) Delete"<<endl;
cout<<"3) Show"<<endl;
cout<<"4) Exit"<<endl;
int ch;
cout<<"Enter your choice"<<endl;
cin>>ch;
switch(ch)
{
case 1: cout<<"Insertion at end"<<endl;
p=new Queue;
cout<<"Enter the name of this person"<<endl;
cin>>p->name;
cout<<"Enter the roll number of this person"<<endl;
cin>>p->roll_number;
cout<<"Enter the total marks of this person"<<endl;
cin>>p->total_marks;
rear->next=p;
p->next=NULL;
rear=p;
break;
case 2: cout<<"Deletion at beginning"<<endl;
cout<<"Object to be deleted is"<<endl;
front->show();
ptr=front;
front=front->next;
delete ptr;
break;
case 3: cout<<"Traversal"<<endl;
for(ptr=front;ptr!=NULL;ptr=ptr->next)
{
int i=1;
cout<<"The "<<i++<<" Record is of";
ptr->show();
}
break;
case 4: quit=1;
break;
default: cout<<"Wrong Choice! Try again"<<endl;
}
}while(quit!=1);
return 0;
}