-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathRotateArray.java
62 lines (57 loc) · 1.46 KB
/
RotateArray.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
https://leetcode.com/problems/rotate-array/
*/
class Solution {
public void rotate(int[] nums, int k) {
k %= nums.length;
if (k == 0) return;
k = nums.length-k;
for (int i = 0, j = k-1; i < j; ++i, --j)
{
int temp = nums[i];
nums[i] = nums[j];
nums[j] = temp;
}
for (int i = k, j = nums.length-1; i < j; ++i, --j)
{
int temp = nums[i];
nums[i] = nums[j];
nums[j] = temp;
}
for (int i = 0, j = nums.length-1; i < j; ++i, --j)
{
int temp = nums[i];
nums[i] = nums[j];
nums[j] = temp;
}
}
}
/*https://practice.geeksforgeeks.org/problems/rotate-array-by-n-elements-1587115621/1*/
class Solution
{
//Function to rotate an array by d elements in counter-clockwise direction.
static void rotateArr(int arr[], int d, int n)
{
// add your code here
int temp;
d %= n;
for (int i = 0, j = d-1; i < j; ++i, --j)
{
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
for (int i = d, j = n-1; i < j; ++i, --j)
{
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
for (int i = 0, j = n-1; i < j; ++i, --j)
{
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}