-
Notifications
You must be signed in to change notification settings - Fork 2
/
5.quick_sort.cpp
50 lines (43 loc) · 1.03 KB
/
5.quick_sort.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
// C++ code to implement quicksort
#include <bits/stdc++.h>
#include <iostream>
#include <time.h>
using namespace std;
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);
}
void quickSort(int arr[], int low, int high)
{
if (low < high)
{
int pi = partition(arr, low, high);
quickSort(arr, low, pi - 1);
quickSort(arr, pi + 1, high);
}
}
int main()
{
int arr[] = {10, 7, 1, 9, 8, 5, 3, 76, 67, 23, 13, 75, 86};
int N = sizeof(arr) / sizeof(arr[0]);
clock_t start, end;
start = clock();
quickSort(arr, 0, N - 1);
end = clock();
cout << "Time taken for quick sort: " << ((float)(end - start)) / CLOCKS_PER_SEC << " sec \n";
cout << "Sorted array: " << endl;
for (int i = 0; i < N; i++)
cout << arr[i] << " ";
return 0;
}