forked from avani112/LearnPython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cycle.cpp
61 lines (43 loc) · 944 Bytes
/
cycle.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
58
59
60
61
#include <iostream>
using namespace std;
void cycleSort(int arr[], int n)
{
int writes = 0;
for (int cycle_start = 0; cycle_start <= n - 2; cycle_start++) {
int item = arr[cycle_start];
int pos = cycle_start;
for (int i = cycle_start + 1; i < n; i++)
if (arr[i] < item)
pos++;
if (pos == cycle_start)
continue;
while (item == arr[pos])
pos += 1;
if (pos != cycle_start) {
swap(item, arr[pos]);
writes++;
}
while (pos != cycle_start) {
pos = cycle_start;
for (int i = cycle_start + 1; i < n; i++)
if (arr[i] < item)
pos += 1;
while (item == arr[pos])
pos += 1;
if (item != arr[pos]) {
swap(item, arr[pos]);
writes++;
}
}
}
}
int main()
{
int arr[] = { 13, 5, 11, 1, 10, 9, 2, 4 };
int n = sizeof(arr) / sizeof(arr[0]);
cycleSort(arr, n);
cout << "After sort : " << endl;
for (int i = 0; i < n; i++)
cout << arr[i] << " ";
return 0;
}