189. Rotate Array (旋转数组)

来源:互联网 发布:小学生英语软件人教版 编辑:程序博客网 时间:2024/06/05 12:47

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.

Hint:
Could you do it in-place with O(1) extra space?

public class Solution {    public void reverse(int[] nums,int left,int right){int temp;for(int i=left;i<=(right+left)/2;i++){temp = nums[i];nums[i] = nums[right-(i-left)];nums[right-(i-left)] = temp;}}    public void rotate(int[] nums, int k) {       k = k % nums.length;if (nums.length < 2 || k < 1)return;reverse(nums,0,nums.length-k-1);reverse(nums,nums.length-k,nums.length-1);reverse(nums,0,nums.length-1);    }}


0 0
原创粉丝点击