我读了这样一个旋转数组的解决方案
问题:
public class Solution {
public void rotate(int[] nums, int k) {
int temp, previous;
for (int i = 0; i < k; i++) {
previous = nums[nums.length - 1];
for (int j = 0; j < nums.length; j++) {
temp = nums[j];
nums[j] = previous;
previous = temp;
}
}
}
}
我很困惑,
它是一个范围作为还是单个元素作为?previous = nums[num.lengh -1]nums[0:10]nums[0]
holdtom
米脂
临摹微笑
大话西游666
相关分类