Skip to content

Commit bfc1feb

Browse files
committed
Cycle Sort
1 parent 6cd9051 commit bfc1feb

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ Java Solution for Data Structures and Algorithms.
101101
* [SegregateElementOfThreeType](Sorting/SegregateElementOfThreeType.java)
102102
* [SegregateElementsOfTwoType](Sorting/SegregateElementsOfTwoType.java)
103103
* [UnionOfTwoSortedArray](Sorting/UnionOfTwoSortedArray.java)
104+
* [CycleSort](Sorting/CycleSort.java)
104105

105106
### `NOTE: Raise an issue if any program doesn't work.`
106107
### `More Topics to be added soon`

Sorting/CycleSort.java

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
package SummerTrainingGFG.Sorting;
2+
3+
import java.util.Arrays;
4+
5+
/**
6+
* @author Vishal Singh */
7+
public class CycleSort {
8+
static void swap(int[] arr,int i,int j){
9+
int temp = arr[i];
10+
arr[i] = arr[j];
11+
arr[j] = temp;
12+
}
13+
static void cycleSort(int[] arr,int n){
14+
for (int i = 0; i < n; i++) {
15+
int item = arr[i];
16+
int pos = i;
17+
for (int j = i+1; j < n; j++) {
18+
if(arr[j]<item){
19+
pos++;
20+
}
21+
}
22+
int temp = arr[pos];
23+
arr[pos] = item;
24+
item = temp;
25+
while (pos!=i){
26+
pos = i;;
27+
for (int j = i+1; j < n ; j++) {
28+
if (arr[j] < item){
29+
pos++;
30+
}
31+
}
32+
33+
temp = arr[pos];
34+
arr[pos] = item;
35+
item = temp;
36+
}
37+
}
38+
}
39+
public static void main(String[] args) {
40+
int[] arr = {50,40,30,20,10,5,60,70,80,100,1,2,3};
41+
cycleSort(arr,arr.length);
42+
System.out.println(Arrays.toString(arr));
43+
}
44+
}

0 commit comments

Comments
 (0)