-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4sem_47.cpp
85 lines (64 loc) · 1.59 KB
/
4sem_47.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
#include <iostream>
#include <stack>
using namespace std;
void swap(int& a, int& b) {
int temp = a;
a = b;
b = temp;
}
int partition(int arr[], int low, int high) {
int pivot = arr[high];
int i = low - 1;
for (int j = low; j <= high - 1; j++) {
if (arr[j] <= pivot) {
i++;
swap(arr[i], arr[j]);
}
}
swap(arr[i + 1], arr[high]);
return (i + 1);
}
int iterativeQuickSort(int arr[],int low, int high){
stack<int> stack;
int num_calls = 0;
stack.push(low);
stack.push(high);
while (!stack.empty()){
high = stack.top();
stack.pop();
low = stack.top();
stack.pop();
int pvt_idx = partition(arr , low , high );
if ( low < pvt_idx - 1 ){
stack.push(low);
stack.push(pvt_idx - 1 );
num_calls++;
}
if ( high > pvt_idx + 1 ){
stack.push(pvt_idx + 1 ) ;
stack.push(high);
num_calls++;
}
}
return num_calls;
}
void printArray(int arr[], int size) {
for (int i = 0; i < size; i++)
cout << arr[i] << " ";
cout << endl;
}
int main() {
int n;
cout << "Enter the number of elements: ";
cin >> n;
int arr[10000];
for (int i = 0; i < n; ++i)
arr[i] = rand() % 1000;
cout << "Given array is \n";
printArray(arr, n);
int num_calls = iterativeQuickSort(arr, 0, n - 1);
cout << "Sorted array is \n";
printArray(arr, n);
cout << "Number of recursive calls: " << num_calls << endl;
return 0;
}