Skip to content

Commit

Permalink
Move CycleSort.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
suufi authored Nov 1, 2019
1 parent 3eb403e commit fae53b9
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions C++/CycleSort.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#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[] = { 1, 8, 3, 9, 10, 10, 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;
}

0 comments on commit fae53b9

Please sign in to comment.