-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSolution.java
45 lines (34 loc) · 1023 Bytes
/
Solution.java
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
import java.util.Arrays;
public class Solution {
private static void swap(int[] list, int i, int j) {
int temp = list[i];
list[i] = list[j];
list[j] = temp;
}
private static void shiftLeft(int[] list, int count) {
for (int i = 0; i < list.length - count; i++) {
swap(list, i, count + i);
}
}
private static void shiftRight(int[] list, int count) {
for (int i = list.length - 1; i >= count; i--) {
swap(list, i, i - count);
}
}
private static void rotate(int[] list, int k) {
k %= list.length;
if (k <= 0)
return;
if (k <= list.length / 2)
shiftLeft(list, k);
else
shiftRight(list, list.length - k);
}
public static void main(String[] args) {
for (int i = 0; i < 6; i++) {
int[] list = { 1, 2, 3, 4, 5, 6 };
rotate(list, i);
System.out.println(Arrays.toString(list));
}
}
}