-
Notifications
You must be signed in to change notification settings - Fork 391
Expand file tree
/
Copy pathQuick_Sort.cpp
More file actions
52 lines (52 loc) · 977 Bytes
/
Quick_Sort.cpp
File metadata and controls
52 lines (52 loc) · 977 Bytes
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
#include <bits/stdc++.h>
using namespace std;
void swap(int *a, int *b)
{
int temp = *a;
*a = *b;
*b = temp;
}
void printArray(int arr[], int n)
{
for (int i = 0; i < n; i++)
{
cout << arr[i] << " ";
}
cout << endl;
}
int partition(int arr[], int start, int end)
{
int pivot = arr[end];
int pIndex = start - 1;
for (int i = start; i <= end - 1; i++)
{
if (arr[i] < pivot)
{
pIndex++;
swap(&arr[pIndex], &arr[i]);
}
}
swap(&arr[pIndex + 1], &arr[end]);
return pIndex + 1;
}
void quickSort(int arr[], int start, int end)
{
if (start < end)
{
int pIndex = partition(arr, start, end);
quickSort(arr, start, pIndex - 1);
quickSort(arr, pIndex + 1, end);
}
}
int main()
{
int n;
cin >> n;
int arr[n];
for (int i = 0; i < n; i++)
{
cin >> arr[i];
}
quickSort(arr, 0, n - 1);
printArray(arr, n);
}