-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathquickSort.cpp
57 lines (42 loc) · 992 Bytes
/
quickSort.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
/*
* @author : imkaka
* @date : 6/2/2019
*/
#include<iostream>
using namespace std;
void swap(int& a, int& b){
int temp = a;
a = b;
b = temp;
}
void quickSort(int arr[], int left, int right){
if(right - left <= 1)
return;
//Pivot arr[left]
int yellow = left +1;
for(int green = left+1; green < right; ++green){
if(arr[green] < arr[left]){
swap(arr[yellow], arr[green]);
yellow++;
}
}
//Move Pivot to original place
swap(arr[left], arr[yellow-1]);
quickSort(arr, left, yellow-1);
quickSort(arr, yellow, right);
}
void print(int arr[],int size){
for(int i = 0; i < size; ++i){
cout << arr[i] << " ";
}
cout << endl;
}
int main(){
int arr[] = {10, 25, 0, 23, 36, -1, 3, 1, 6};
int size = sizeof(arr)/sizeof(arr[0]);
cout << "Before Sorting: ";
print(arr, size);
quickSort(arr, 0, size);
cout << "After Sorting: ";
print(arr, size);
}