• 【LeetCode & 剑指offer刷题】数组题9:旋转数组(189. Rotate Array)


    【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)

    189. Rotate Array(相当于循环右移k位)

    Given an array, rotate the array to the right by k steps, where k is non-negative.
    Example 1:
    Input: [1,2,3,4,5,6,7] and k = 3
    Output: [5,6,7,1,2,3,4]Explanation:
    rotate 1 steps to the right: [7,1,2,3,4,5,6]
    rotate 2 steps to the right: [6,7,1,2,3,4,5]
    rotate 3 steps to the right: [5,6,7,1,2,3,4]
    Example 2:
    Input: [-1,-100,3,99] and k = 2
    Output: [3,99,-1,-100]
    Explanation:
    rotate 1 steps to the right: [99,-1,-100,3]
    rotate 2 steps to the right: [3,99,-1,-100]
    Note:
    • Try to come up as many solutions as you can, there are at least 3 different ways to solve this problem.
    • Could you do it in-place with O(1) extra space?
    相关题目:循环左移
    //方法一:使用额外的数组,索引i用i+k替换,然后把组织好的数组复制过去
    // O(n), O(n)
    /*class Solution
    {
    public:
        void rotate(vector<int>& a, int k)
        {
            vector<int> temp(a);
            int n = a.size();
            for(int i = 0; i<n; i++)
            {
                temp[(i+k)%n] = a[i]; //进行题意的rotated
            }
           
            a = temp; //将数据复制过去
        }
    };*/
    /*
    方法二:多次反转法
    Original List                   : 1 2 3 4 5 6 7
    After reversing all numbers     : 7 6 5 4 3 2 1
    After reversing first k numbers : 5 6 7 4 3 2 1
    After revering last n-k numbers : 5 6 7 1 2 3 4 --> Result
    分析:O(n) O(1)
    */
    #include <algorithm>
    class Solution
    {
    public:
        void rotate(vector<int>& a, int k)
        {
            k %= a.size(); //以免k过大
           
            reverse(a.begin(), a.end()); //反转所有元素
            reverse(a.begin(), a.begin()+k); //反转前k个元素
            reverse(a.begin()+k, a.end()); //反转剩余元素(注意reverse反转区间为前闭后开,故这里为a.begin()+k)
        }
    };
    //方法三:使用循环替代,略
     
     
     
  • 相关阅读:
    劳动节CF题总结
    「联合省选 2020 A」作业题 做题心得
    bzoj3784 树上的路径
    [AGC039E] Pairing Points
    [AGC012E] Camel and Oases
    [AGC011F] Train Service Planning
    [AGC039F] Min Product Sum
    Pedersen commitment原理
    标准模型(standard model)与随机语言模型(random oracle model)
    会议论文引用缩写标准 PDF
  • 原文地址:https://www.cnblogs.com/wikiwen/p/10224335.html
Copyright © 2020-2023  润新知