Skip to content

Commit 4835ff6

Browse files
Cyclic Sort
1 parent c692dc3 commit 4835ff6

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

Sorting/CyclicSort.java

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import java.util.Arrays;
2+
public class CyclicSort {
3+
public static void main(String[] args) {
4+
int[] arr = {5, 4, 3, 2, 1};
5+
sort(arr);
6+
System.out.println(Arrays.toString(arr));
7+
}
8+
9+
static void sort(int[] arr) {
10+
int i = 0;
11+
while (i < arr.length) {
12+
int correct = arr[i] - 1;
13+
if (arr[i] != arr[correct])
14+
swap(arr, i , correct);
15+
else
16+
i++;
17+
}
18+
}
19+
20+
static void swap(int[] arr, int first, int second) {
21+
int temp = arr[first];
22+
arr[first] = arr[second];
23+
arr[second] = temp;
24+
}
25+
}

0 commit comments

Comments
 (0)