-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Solution.java
47 lines (41 loc) · 1.45 KB
/
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
46
47
// github.com/RodneyShag
import java.util.Scanner;
// Time Complexity: O(n)
// Space Complexity: O(1) by doing an "in place" rotation
public class Solution {
public static void main(String[] args) {
/* Save input */
Scanner scan = new Scanner(System.in);
int size = scan.nextInt();
int numRotations = scan.nextInt();
int array[] = new int[size];
for (int i = 0; i < size; i++) {
array[i] = scan.nextInt();
}
scan.close();
/* Rotate array (in place) using 3 reverse operations */
numRotations %= size; // to account for numRotations > size
int rotationSpot = size - 1 - numRotations;
reverse(array, 0, size - 1);
reverse(array, 0, rotationSpot);
reverse(array, rotationSpot + 1, size - 1);
/* Print rotated array */
for (int i = 0; i < size; i++) {
System.out.print(array[i] + " ");
}
}
/* Reverses array from "start" to "end" inclusive */
private static void reverse(int[] array, int start, int end) {
if (array == null || start < 0 || start >= array.length || end < 0 || end >= array.length) {
return;
}
while (start < end) {
swap(array, start++, end--);
}
}
private static void swap(int [] array, int i, int j) {
int temp = array[i];
array[i] = array[j];
array[j] = temp;
}
}