-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuickSort.cpp
More file actions
72 lines (57 loc) · 1.18 KB
/
QuickSort.cpp
File metadata and controls
72 lines (57 loc) · 1.18 KB
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
#include <iostream>
using namespace std;
int partition(int a[], int l, int u)
{
int v, i, j, temp;
v = a[l];
i = l;
j = u + 1;
do
{
do
i++;
while (a[i] < v && i <= u);
do
j--;
while (v < a[j]);
if (i < j)
{
temp = a[i];
a[i] = a[j];
a[j] = temp;
}
} while (i < j);
a[l] = a[j];
a[j] = v;
return (j);
}
void quick_sort(int a[], int l, int u)
{
int j;
if (l < u)
{
j = partition(a, l, u);
quick_sort(a, l, j - 1);
quick_sort(a, j + 1, u);
}
}
int main()
{
int a[50], n, i;
cout << "----------------------------------";
cout << "\nQuick sort" << endl;
cout << "\nEnter the number of elements: ";
cin >> n;
cout << "\nEnter array elements: ";
for (i = 0; i < n; i++)
cin >> a[i];
cout << "\nArray before sorting: ";
for (i = 0; i < n; i++)
cout << a[i] << " ";
quick_sort(a, 0, n - 1);
cout << "\nArray after sorting: ";
for (i = 0; i < n; i++)
cout << a[i] << " ";
cout << "\n----------------------------------";
return 0;
}