-
Notifications
You must be signed in to change notification settings - Fork 495
/
Copy pathReverseQueue.cpp
68 lines (64 loc) Β· 1.64 KB
/
ReverseQueue.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
// C++ Program to reverse a Queue
#include <bits/stdc++.h> // Header file which includes all C++ standard library
using namespace std;
// Reverse a Queue without using Recursion
void reverseQueueWithoutRecursion(queue<int> q) // Passing queue by value as we want to execute another functions for reversal
{
stack<int> s;
while (!q.empty())
{
s.push(q.front());
q.pop();
}
while (!s.empty())
{
q.push(s.top());
s.pop();
}
cout << "\nQueue After Reversing (Without Recursion) :" << endl;
while (!q.empty())
{
cout << q.front() << " ";
q.pop();
}
/*
Time Complexity : O(n)
Space Complexity : O(n)
*/
}
// Reverse a queue using Recursion
void reverseQueueWithRecursion(queue<int> &q) // Passing a Queue by reference
{
if (q.empty())
{
return;
}
int data = q.front();
q.pop();
reverseQueueWithRecursion(q);
q.push(data);
/*
Time Complexity : O(n)
Space Complexity : O(n) (As recursion uses stack concept)
*/
}
int main()
{
queue<int> q; // Creating queue for integers using Standard Template library
// Printing the element before inserting into the queue
// Inserting 5 Element in the queue(1 2 3 4 5)
cout << "Given Queue : " << endl;
for (int i = 1; i <= 5; i++)
{
cout << i << " "; // Printing the initial elements in queue for reference
q.push(i);
}
reverseQueueWithoutRecursion(q);
reverseQueueWithRecursion(q);
cout << "\nQueue After Reversing with recursion:" << endl;
while (!q.empty())
{
cout << q.front() << " ";
q.pop();
}
}