-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueueUsingLinked.cpp
More file actions
122 lines (113 loc) · 1.67 KB
/
queueUsingLinked.cpp
File metadata and controls
122 lines (113 loc) · 1.67 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
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
#include<iostream>
#include<stdbool.h>
using namespace std;
template<class T> //for class Node
class Node
{
public:
T data;
Node<T> *bottom;
Node(){}
Node(T d)
{
data = d;
}
void display()
{
cout<<data;
}
};
template<class T>
class queue
{
private:
Node<T> *top; //begining of the queue
public:
queue()
{
top = 0; //null pointer
}
bool isEmpty()
{
return(top == 0);
}
// T getTop();
void push(T data);
T pop();
void displayQueue();
};
template<class T>
void queue<T>::push(T data)
{
Node<T> *temp = new Node<T>(data);
if(isEmpty())
{
top = temp;
temp->bottom = 0;
}
else
{
Node<T> *curr = top;
while(curr->bottom !=0)
curr = curr->bottom;
curr->bottom = temp;
}
}
template<class T>
T queue<T>::pop()
{
if(!isEmpty())
{
Node<T> *temp = new Node<T>;
temp = top;
top = top->bottom;
T temp2;
temp2 = temp->data;
delete temp;
return temp2;
}
else
{
cout<<"\tqueue empty!!!\t";
return 0;
}
}
template<class T>
void queue<T>::displayQueue()
{
Node<T> *curr = top;
cout<<"\nTop :\n";
while(curr != 0)
{
cout<<"|\t";
curr->display();
cout<<"\t|";
cout<<"\n";
curr = curr->bottom;
}
for(int y=0;y<17;y++)
cout<<"-";
cout<<endl;
}
int main()
{
queue<int> s;
cout<<s.isEmpty()<<endl;
s.displayQueue();
cout<<"\nPushing to queue\n";
s.push(10);
s.displayQueue();
s.push(20);
s.displayQueue();
s.push(30);
s.displayQueue();
cout<<"\nPopping from queue\n";
cout<<"popped:"<<s.pop()<<endl;
s.displayQueue();
cout<<"popped:"<<s.pop()<<endl;
s.displayQueue();
cout<<"popped:"<<s.pop()<<endl;
s.displayQueue();
cout<<"popped:"<<s.pop()<<endl;
return 0;
}