-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathCycleSort.cpp
More file actions
58 lines (50 loc) · 1.27 KB
/
Copy pathCycleSort.cpp
File metadata and controls
58 lines (50 loc) · 1.27 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
#include<iostream>
#include<stdio.h>
using namespace std;
void sort(int arr[], int n)
{
int writes = 0;
for (int cycle_start = 0; cycle_start < n - 1; 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 f;
cout<<"Enter length of array ";
cin>>f;
int arr[f];
cout<<"Enter array"<<endl;
for(int i=0;i<f;i++){
cin>>arr[i];
}
sort(arr, f);
cout << "Sorted array: " << endl;
for (int i = 0; i < f; i++)
cout << arr[i] << " ";
return 0;
}