Cycle sort is an in-place, unstable sorting algorithm that is particularly useful when sorting arrays containing elements with a small range of values. It was developed by W. D. Jones and published in 1963.
The basic idea behind cycle sort is to divide the input array into cycles, where each cycle consists of elements that belong to the same position in the sorted output array. The algorithm then performs a series of swaps to place each element in its correct position within its cycle, until all cycles are complete and the array is sorted.
Here’s a step-by-step explanation of the cycle sort algorithm:
- Start with an unsorted array of n elements.
- Initialize a variable, cycleStart, to 0.
- For each element in the array, compare it with every other element to its right. If there are any elements that are smaller than the current element, increment cycleStart.
- If cycleStart is still 0 after comparing the first element with all other elements, move to the next element and repeat step 3.
- Once a smaller element is found, swap the current element with the first element in its cycle. The cycle is then continued until the current element returns to its original position.
Repeat steps 3-5 until all cycles have been completed.
The array is now sorted.
One of the advantages of cycle sort is that it has a low memory footprint, as it sorts the array in-place and does not require additional memory for temporary variables or buffers. However, it can be slow in certain situations, particularly when the input array has a large range of values. Nonetheless, cycle sort remains a useful sorting algorithm in certain contexts, such as when sorting small arrays with limited value ranges.
Cycle sort is an in-place sorting Algorithm, unstable sorting algorithm, and a comparison sort that is theoretically optimal in terms of the total number of writes to the original array.
- It is optimal in terms of the number of memory writes. It minimizes the number of memory writes to sort (Each value is either written zero times if it’s already in its correct position or written one time to its correct position.)
- It is based on the idea that the array to be sorted can be divided into cycles. Cycles can be visualized as a graph. We have n nodes and an edge directed from node i to node j if the element at i-th index must be present at j-th index in the sorted array.
Cycle in arr[] = {2, 4, 5, 1, 3}

Cycle in arr[] = {2, 4, 5, 1, 3}
- Cycle in arr[] = {4, 3, 2, 1}

Cycle in arr[] = {4, 3, 2, 1}
We one by one consider all cycles. We first consider the cycle that includes the first element. We find the correct position of the first element, and place it at its correct position, say j. We consider the old value of arr[j] and find its correct position, we keep doing this till all elements of the current cycle are placed at the correct position, i.e., we don’t come back to the cycle starting point.
Pseudocode :
Begin
for
start:= 0 to n - 2 do
key := array[start]
location := start
for i:= start + 1 to n-1 do
if array[i] < key then
location: =location +1
done
if location = start then
ignore lower part, go for next iteration
while key = array[location] do
location: = location + 1
done
if location != start then
swap array[location] with key
while location != start do
location start
for i:= start + 1 to n-1 do
if array[i] < key then
location: =location +1
done
while key= array[location]
location := location +1
if key != array[location]
Swap array[location] and key
done
done
End
Explanation :
arr[] = {10, 5, 2, 3}
index = 0 1 2 3
cycle_start = 0
item = 10 = arr[0]
Find position where we put the item
pos = cycle_start
i=pos+1
while(i<n)
if (arr[i] < item)
pos++;
We put 10 at arr[3] and change item to
old value of arr[3].
arr[] = {10, 5, 2, 10}
item = 3
Again rotate rest cycle that start with index '0'
Find position where we put the item = 3
we swap item with element at arr[1] now
arr[] = {10, 3, 2, 10}
item = 5
Again rotate rest cycle that start with index '0' and item = 5
we swap item with element at arr[2].
arr[] = {10, 3, 5, 10 }
item = 2
Again rotate rest cycle that start with index '0' and item = 2
arr[] = {2, 3, 5, 10}
Above is one iteration for cycle_stat = 0.
Repeat above steps for cycle_start = 1, 2, ..n-2
Below is the implementation of the above approach:
CPP
#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;
}
|
Java
import java.util.*;
import java.lang.*;
class GFG {
public static 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) {
int temp = item;
item = arr[pos];
arr[pos] = temp;
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]) {
int temp = item;
item = arr[pos];
arr[pos] = temp;
writes++;
}
}
}
}
public static void main(String[] args)
{
int arr[] = { 1 , 8 , 3 , 9 , 10 , 10 , 2 , 4 };
int n = arr.length;
cycleSort(arr, n);
System.out.println( "After sort : " );
for ( int i = 0 ; i < n; i++)
System.out.print(arr[i] + " " );
}
}
|
Python3
def cycleSort(array):
writes = 0
for cycleStart in range ( 0 , len (array) - 1 ):
item = array[cycleStart]
pos = cycleStart
for i in range (cycleStart + 1 , len (array)):
if array[i] < item:
pos + = 1
if pos = = cycleStart:
continue
while item = = array[pos]:
pos + = 1
array[pos], item = item, array[pos]
writes + = 1
while pos ! = cycleStart:
pos = cycleStart
for i in range (cycleStart + 1 , len (array)):
if array[i] < item:
pos + = 1
while item = = array[pos]:
pos + = 1
array[pos], item = item, array[pos]
writes + = 1
return writes
arr = [ 1 , 8 , 3 , 9 , 10 , 10 , 2 , 4 ]
n = len (arr)
cycleSort(arr)
print ( "After sort : " )
for i in range ( 0 , n) :
print (arr[i], end = ' ' )
|
C#
using System;
class GFG {
public static 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) {
int temp = item;
item = arr[pos];
arr[pos] = temp;
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]) {
int temp = item;
item = arr[pos];
arr[pos] = temp;
writes++;
}
}
}
}
public static void Main()
{
int [] arr = { 1, 8, 3, 9, 10, 10, 2, 4 };
int n = arr.Length;
cycleSort(arr, n);
Console.WriteLine( "After sort : " );
for ( int i = 0; i < n; i++)
Console.Write(arr[i] + " " );
}
}
|
Javascript
<script>
function cycleSort(arr, n)
{
let writes = 0;
for (let cycle_start = 0; cycle_start <= n - 2; cycle_start++)
{
let item = arr[cycle_start];
let pos = cycle_start;
for (let 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)
{
let temp = item;
item = arr[pos];
arr[pos] = temp;
writes++;
}
while (pos != cycle_start)
{
pos = cycle_start;
for (let i = cycle_start + 1; i < n; i++)
if (arr[i] < item)
pos += 1;
while (item == arr[pos])
pos += 1;
if (item != arr[pos]) {
let temp = item;
item = arr[pos];
arr[pos] = temp;
writes++;
}
}
}
}
let arr = [ 1, 8, 3, 9, 10, 10, 2, 4 ];
let n = arr.length;
cycleSort(arr, n);
document.write( "After sort : " + "<br/>" );
for (let i = 0; i < n; i++)
document.write(arr[i] + " " );
</script>
|
OutputAfter sort :
1 2 3 4 8 9 10 10
Time Complexity Analysis:
- Worst Case: O(n2)
- Average Case: O(n2)
- Best Case: O(n2)
Auxiliary Space: O(1)
- The space complexity is constant cause this algorithm is in place so it does not use any extra memory to sort.
Method 2: This method is only applicable when given array values or elements are in the range of 1 to N or 0 to N. In this method, we do not need to rotate an array
Approach : All the given array values should be in the range of 1 to N or 0 to N. If the range is 1 to N then every array element’s correct position will be the index == value-1 i.e. means at the 0th index value will be 1 similarly at the 1st index position value will be 2 and so on till nth value.
similarly for 0 to N values correct index position of each array element or value will be the same as its value i.e. at 0th index 0 will be there 1st position 1 will be there.
Explanation :
arr[] = {5, 3, 1, 4, 2}
index = 0 1 2 3 4
i = 0;
while( i < arr.length)
correctposition = arr[i]-1;
find ith item correct position
for the first time i = 0 arr[0] = 5 correct index of 5 is 4 so arr[i] - 1 = 5-1 = 4
if( arr[i] <= arr.length && arr[i] != arr[correctposition])
arr[i] = 5 and arr[correctposition] = 4
so 5 <= 5 && 5 != 4 if condition true
now swap the 5 with 4
int temp = arr[i];
arr[i] = arr[correctposition];
arr[correctposition] = temp;
now resultant arr at this after 1st swap
arr[] = {2, 3, 1, 4, 5} now 5 is shifted at its correct position
now loop will run again check for i = 0 now arr[i] is = 2
after swapping 2 at its correct position
arr[] = {3, 2, 1, 4, 5}
now loop will run again check for i = 0 now arr[i] is = 3
after swapping 3 at its correct position
arr[] = {1, 2, 3, 4, 5}
now loop will run again check for i = 0 now arr[i] is = 1
this time 1 is at its correct position so else block will execute and i will increment i = 1;
once i exceeds the size of array will get array sorted.
arr[] = {1, 2, 3, 4, 5}
else
i++;
loop end;
once while loop end we get sorted array just print it
for( index = 0 ; index < arr.length; index++)
print(arr[index] + " ")
sorted arr[] = {1, 2, 3, 4, 5}
Below is the implementation of the above approach:
C++
#include <iostream>
using namespace std;
void cyclicSort( int arr[], int n){
int i = 0;
while (i < n)
{
int correct = arr[i] - 1 ;
if (arr[i] != arr[correct]){
swap(arr[i], arr[correct]) ;
} else {
i++ ;
}
}
}
void printArray( int arr[], int size)
{
int i;
for (i = 0; i < size; i++)
cout << arr[i] << " " ;
cout << endl;
}
int main() {
int arr[] = { 3, 2, 4, 5, 1};
int n = sizeof (arr) / sizeof (arr[0]);
cout << "Before sorting array: \n" ;
printArray(arr, n);
cyclicSort(arr, n);
cout << "Sorted array: \n" ;
printArray(arr, n);
return 0;
}
|
Java
import java.util.*;
public class MissingNumber {
public static void main(String[] args)
{
int [] arr = { 3 , 2 , 4 , 5 , 1 };
int n = arr.length;
System.out.println( "Before sort :" );
System.out.println(Arrays.toString(arr));
CycleSort(arr, n);
}
static void CycleSort( int [] arr, int n)
{
int i = 0 ;
while (i < n) {
int correctpos = arr[i] - 1 ;
if (arr[i] < n && arr[i] != arr[correctpos]) {
swap(arr, i, correctpos);
}
else {
i++;
}
}
System.out.println( "After sort : " );
System.out.print(Arrays.toString(arr));
}
static void swap( int [] arr, int i, int correctpos)
{
int temp = arr[i];
arr[i] = arr[correctpos];
arr[correctpos] = temp;
}
}
|
Python3
def cyclicSort(arr, n):
i = 0
while i < n:
correct = arr[i] - 1
if arr[i] ! = arr[correct]:
arr[i], arr[correct] = arr[correct], arr[i]
else :
i + = 1
def printArray(arr):
print ( * arr)
arr = [ 3 , 2 , 4 , 5 , 1 ]
n = len (arr)
print ( "Before sorting array:" )
printArray(arr)
cyclicSort(arr, n)
print ( "Sorted array:" )
printArray(arr)
|
C#
using System;
public class GFG {
static void CycleSort( int [] arr, int n)
{
int i = 0;
while (i < n) {
int correctpos = arr[i] - 1;
if (arr[i] < n && arr[i] != arr[correctpos]) {
swap(arr, i, correctpos);
}
else {
i++;
}
}
Console.Write( "\nAfter sort : " );
for ( int index = 0; index < n; index++)
Console.Write(arr[index] + " " );
}
static void swap( int [] arr, int i, int correctpos)
{
int temp = arr[i];
arr[i] = arr[correctpos];
arr[correctpos] = temp;
}
static public void Main()
{
int [] arr = { 3, 2, 4, 5, 1 };
int n = arr.Length;
Console.Write( "Before sort : " );
for ( int i = 0; i < n; i++)
Console.Write(arr[i] + " " );
CycleSort(arr, n);
}
}
|
Javascript
function cyclicSort(arr, n) {
var i = 0;
while (i < n)
{
let correct = arr[i] - 1;
if (arr[i] !== arr[correct])
{
[arr[i], arr[correct]] = [arr[correct], arr[i]];
}
else {
i++;
}
}
}
function printArray(arr, size) {
for ( var i = 0; i < size; i++) {
console.log(arr[i] + " " );
}
console.log( "\n" );
}
var arr = [3, 2, 4, 5, 1];
var n = arr.length;
console.log( "Before sorting array: \n" );
printArray(arr, n);
cyclicSort(arr, n);
console.log( "Sorted array: \n" );
printArray(arr, n);
|
OutputBefore sorting array:
3 2 4 5 1
Sorted array:
1 2 3 4 5
Time Complexity Analysis:
- Worst Case : O(n)
- Average Case: O(n)
- Best Case : O(n)
Auxiliary Space: O(1)
Advantage of Cycle sort:
- No additional storage is required.
- in-place sorting algorithm.
- A minimum number of writes to the memory
- Cycle sort is useful when the array is stored in EEPROM or FLASH.
Disadvantage of Cycle sort:
- It is not mostly used.
- It has more time complexity o(n^2)
- Unstable sorting algorithm.
Application of Cycle sort:
- This sorting algorithm is best suited for situations where memory write or swap operations are costly.
- Useful for complex problems.
Reference:
https://en.wikipedia.org/wiki/Cycle_sort
This article is contributed by Nishant Singh. If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.