-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4sem_26.cpp
53 lines (43 loc) · 888 Bytes
/
4sem_26.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
#include <iostream>
#include <fstream>
#include <ctime>
using namespace std;
void swap(int &a, int &b) {
int temp = a;
a = b;
b = temp;
}
void pivot_swap(int n, int arr[]) {
int i = 1;
int j = n;
int pivot = arr[0];
while (i <= j) {
while (i <= n - 1 && arr[i] < pivot) {
i++;
}
while (j > 0 && arr[j] > pivot) {
j--;
}
if (i <= j) {
swap(arr[i], arr[j]);
i++;
j--;
}
}
swap(arr[0], arr[j]);
}
int main() {
int n;
cin >> n;
int arr[n];
for (int i = 0; i < n; i++) {
cin >> arr[i];
}
pivot_swap(n, arr);
cout << "After pivot: " << endl;
for (int i = 0; i < n; i++) {
cout << arr[i] << " ";
}
cout << endl;
return 0;
}