[LeetCode]--189. Rotate Array

简介: 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

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.

[show hint]

Hint:
Could you do it in-place with O(1) extra space?
Related problem: Reverse Words in a String II

Credits:
Special thanks to @Freezen for adding this problem and creating all test cases.

我想到的就是反转,但是开始写的反转用了惯性思维,用下标控制,很不理想,花费大量时间还弄不精确,后来看了个湄公河,嘿嘿,一下反应到用m,n分别是起始位置和结束位置,然后一直到m

public void rotate(int[] nums, int k) {
        k = k % nums.length;
        if (k >= 1 && nums.length > k) {
            reverseArr1(nums, 0, nums.length - 1);
            reverseArr1(nums, 0, k - 1);
            reverseArr1(nums, k, nums.length - 1);
        }
    }
/**
     * 
     * @param nums
     * @param m
     *            要交换的起始位置,按照数组下标0开始
     * @param n
     *            要交换的结束位置,按照数组下标0开始
     */
    public void reverseArr1(int[] nums, int m, int n) {
        int temp = 0;
        while (m < n) {
            temp = nums[m];
            nums[m] = nums[n];
            nums[n] = temp;
            m++;
            n--;
        }
    }

这也应该算是最佳解了。给大家看看最开始写的逆转算法。蠢死了

/**
     * @param nums
     * @param m
     *            起始位置1开始
     * @param n
     *            结束位置
     */
    public void reverseArr(int[] nums, int m, int n) {
        int temp = 0, len = n - 1;
        for (int i = m - 1; i < ((n - m) / 2 + m); i++) {
            temp = nums[i];
            nums[i] = nums[len - i];
            nums[len - i] = temp;
        }
    }

还有四个解法,明天早上更新吧。

给个链接LeetCode官方谈论区

目录
相关文章
Leetcode Find Minimum in Rotated Sorted Array 题解
对一个有序数组翻转, 就是随机取前K个数,移动到数组的后面,然后让你找出最小的那个数,注意,K有可能是0,也就是没有翻转。
51 0
LeetCode contest 200 5476. 找出数组游戏的赢家 Find the Winner of an Array Game
LeetCode contest 200 5476. 找出数组游戏的赢家 Find the Winner of an Array Game
|
算法 Python
LeetCode 108. 将有序数组转换为二叉搜索树 Convert Sorted Array to Binary Search Tree
LeetCode 108. 将有序数组转换为二叉搜索树 Convert Sorted Array to Binary Search Tree
|
算法 测试技术
LeetCode 88. 合并两个有序数组 Merge Sorted Array
LeetCode 88. 合并两个有序数组 Merge Sorted Array
|
人工智能 索引
LeetCode 1013. 将数组分成和相等的三个部分 Partition Array Into Three Parts With Equal Sum
LeetCode 1013. 将数组分成和相等的三个部分 Partition Array Into Three Parts With Equal Sum
LeetCode 189. 旋转数组 Rotate Array
LeetCode 189. 旋转数组 Rotate Array
|
7月前
|
Python
使用array()函数创建数组
使用array()函数创建数组。
136 3
|
7天前
|
存储 Go 索引
go语言中的数组(Array)
go语言中的数组(Array)
92 67
|
2月前
|
人工智能 前端开发 JavaScript
拿下奇怪的前端报错(一):报错信息是一个看不懂的数字数组Buffer(475) [Uint8Array],让AI大模型帮忙解析
本文介绍了前端开发中遇到的奇怪报错问题,特别是当错误信息不明确时的处理方法。作者分享了自己通过还原代码、试错等方式解决问题的经验,并以一个Vue3+TypeScript项目的构建失败为例,详细解析了如何从错误信息中定位问题,最终通过解读错误信息中的ASCII码找到了具体的错误文件。文章强调了基础知识的重要性,并鼓励读者遇到类似问题时不要慌张,耐心分析。
|
2月前
|
存储 Java
Java“(array) <X> Not Initialized” (数组未初始化)错误解决
在Java中,遇到“(array) &lt;X&gt; Not Initialized”(数组未初始化)错误时,表示数组变量已被声明但尚未初始化。解决方法是在使用数组之前,通过指定数组的大小和类型来初始化数组,例如:`int[] arr = new int[5];` 或 `String[] strArr = new String[10];`。
90 2