-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathres.js
89 lines (78 loc) · 1.91 KB
/
res.js
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// Rotate an array of n elements to the right by k steps.
// For example, with n = 7 and k = 3, the array [1,2,3,4,5,6,7] is rotated to [5,6,7,1,2,3,4].
// Note:
// Try to come up as many solutions as you can, there are at least 3 different ways to solve this problem.
/**
* res.js
* @authors Joe Jiang ([email protected])
* @date 2017-02-25 22:21:51
* @version $Id$
*/
/**
* @param {number[]} nums
* @param {number} k
* @return {void} Do not return anything, modify nums in-place instead.
*/
const rotate = function(nums, k) {
let numslen = nums.length;
for (let i=0; i<k; i++) {
let lastnode = nums.pop();
nums.unshift(lastnode);
}
};
/**
* 2
* @param {*} nums
* @param {*} k
*/
const rotate_2 = (nums, k) => {
let temp, previous;
for (let i = 0; i < k; i++) {
previous = nums[nums.length - 1];
for (let j = 0; j < nums.length; j++) {
temp = nums[j];
nums[j] = previous;
previous = temp;
}
}
}
/**
* 3
* @param {*} nums
* @param {*} k
*/
const rotate_3 = (nums, k) => {
let count = 0;
for (let start=0; count<nums.length; start++) {
let curIndex = start;
let prevNum = nums[start];
do {
const nextIndex = (curIndex + k) % nums.length;
let temp = nums[nextIndex];
nums[nextIndex] = prevNum;
prevNum = temp;
curIndex = nextIndex;
count++;
} while (start !== curIndex);
}
}
/**
* 4
* @param {*} nums
* @param {*} k
*/
const rotate_4 = (nums, k) => {
k %= nums.length;
reverse(nums, 0, nums.length - 1);
reverse(nums, 0, k - 1);
reverse(nums, k, nums.length - 1);
}
const reverse = (nums, start, end) => {
while (start < end) {
const temp = nums[start];
nums[start] = nums[end];
nums[end] = temp;
end -= 1;
start += 1;
}
}