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.

我的代码,运行时间488ms:

public class Solution {
public void Rotate(int[] nums, int k) {
int[] zong=new int[nums.Length+k];
int j=;
k=k%nums.Length;
int[] temp=new int[k];
if (k!=)
{
for(int i=nums.Length-k;i<nums.Length;i++)
{
temp[j]=nums[i];
j++;
}
temp.CopyTo(zong, ); //将temp数组拷贝到zong数组中,其实位置为zong[0]
nums.CopyTo(zong, temp.Length);//将nums数组拷贝到zong数组中,其实位置为zong[temp.Length]
Array.ConstrainedCopy(zong, , nums, ,nums.Length ); //将总的数组拷贝到nums数组中,其中zong的起始位置为zong[0],nums的起始位置为nums[0],拷贝的长度为nums.Length
}
}
}

非常可惜的是,虽然题目要求是用3中做法做出来,但是我只能想出来一种。

本题注意点:

1 可能出现k>nums.Length的情况,此时k%nums.Length即可排除一个轮换周期

2 刚开始用了两个嵌套for循环,可是提示time error,可见这种模式太耗时间,应该少用

在Disacuss中见到了一个非常简洁的算法:

public class Solution {
public void Rotate(int[] nums, int k) {
k=k%nums.Length;
int[] numsCopy=new int[nums.Length];
if(k!=)
{
for(int i=;i<nums.Length;i++)
{
numsCopy[i]=nums[i];
} for(int i=;i<nums.Length;i++)
{
nums[(i+k)%nums.Length]=numsCopy[i];
}
}
}
}

其中nums[(i+k)%nums.Length]=numsCopy[i];这句非常巧妙的利用取余运算!

看了上面的代码,我意识到数组的传值需要用一个for循环,不应该直接传地址。因此将我原来的代码稍作修改:将

 Array.ConstrainedCopy(zong, 0, nums,0 ,nums.Length );修改为一个for循环:
 for (int i=;i<nums.Length;i++)
{
nums[i]=zong[i];
}

这样也可以Accepted!

这里还有一个我至今没有看懂的方法,先放在这里,期待以后可以看懂:

public class Solution {
public void Rotate(int[] nums, int k) {
int sz,n,temp;
sz=n=nums.Length;
k%=n;
if(n< || k<) return;
for(int i=k;n>;++i)
{
int j=i, prev=nums[(i-k)%k];
while(n-->)
{
//Interlocked.Exchange(prev,nums[j]);
temp=nums[j];
nums[j]=prev;
prev=temp;
j=(j+k)%sz;
if(j==i) break;
}
}
}
}

很高兴 今天把它看懂了,这里就贴上源代码以及我的理解:

public class Solution {
public void Rotate(int[] nums, int k) {
int sz,n,temp;
sz=n=nums.Length;
k%=n;
if(n< || k<) return;
for(int i=k;n>;++i)
{
int j=i, prev=nums[(i-k)%k];
while(n-->)
{
//Interlocked.Exchange(prev,nums[j]);
temp=nums[j];
nums[j]=prev;
prev=temp;
j=(j+k)%sz; //如果把这个数组看成一个循环列表,这样每进行完一次j=(j+k)%sz,指针就会前移k格,将该位置的数更新
if(j==i) break; //如果某一次前进k格又到了初始位置,此时在循环的话和上次循环的效果一样,所以应该跳出循环,同时利用下一个位置的数字作为初始的值,进行第二次循环,一直如此往复,知道所有的值都更新完成。由于条件限制,一共只会自行n次,每次更新一个数字,正好全部更新完毕
}
}
}
}

C#解leetcode 189. Rotate Array的更多相关文章

  1. [LeetCode] 189. Rotate Array 旋转数组

    Given an array, rotate the array to the right by k steps, where k is non-negative. Example 1: Input: ...

  2. 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  ...

  3. Java for 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 ...

  4. Java [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 ...

  5. Leetcode 189 Rotate Array stl

    题意:将数组旋转k次,如将数组[1,2,3,4,5]旋转1次得到[2,3,4,5,1],将数组[1,2,3,4,5]旋转2次得到[3,4,5,1,2]..... 本质是将数组分成两部分a1,a2,.. ...

  6. &lt;LeetCode OJ&gt; 189. Rotate Array

    189. Rotate Array Total Accepted: 55073 Total Submissions: 278176 Difficulty: Easy Rotate an array o ...

  7. 189. Rotate Array - LeetCode

    Question 189. Rotate Array Solution 题目大意:数组中最后一个元素移到第一个,称动k次 思路:用笨方法,再复制一个数组 Java实现: public void rot ...

  8. 189. Rotate Array【easy】

    189. Rotate Array[easy] Rotate an array of n elements to the right by k steps. For example, with n = ...

  9. 【LeetCode】Rotate Array

    Rotate Array Rotate an array of n elements to the right by k steps. For example, with n = 7 and k = ...

随机推荐

  1. window bzr launchpad 安装配置

    1: https://launchpad.net/bzr/2.6/2.6b1/+download/bzr-2.6b1-1-setup.exe 使用Standalone版本  , 安装时选择plugin ...

  2. python 中文乱码解决

    # -*- coding:utf-8 -*- import sys reload(sys) sys.setdefaultencoding('utf8') physicsPath = u"D: ...

  3. GNU DAEMON THREAD <1>

    尝试写一个简单的守护进程 /** @File daemon.c * * Build a daemon process for game * */ #include <unistd.h> # ...

  4. LA 3998 Prime k-tuple

    题意:如果K个相邻素数p1,p2,p3.....pk满足pk-p1=s,称这些素数组成一个距离为s的素数K元组,输入a,b,k,s,输出区间[a,b]内距离为s的素数k元组的个数. 思路:先打到500 ...

  5. Linux2.6内核--内存管理(2)--区

    由于硬件的限制,内核不能对所有的页一视同仁.有些页位于内存中的特定物理地址上,所以,不能将其用于一些特别的任务.(关于内存分页机制可以查看:http://blog.csdn.net/dlutbruce ...

  6. 字符串(后缀自动机):NOI 2016 优秀的拆分

    [问题描述] 如果一个字符串可以被拆分为 AABB 的形式,其中 A 和 B 是任意非空字符串, 则我们称该字符串的这种拆分是优秀的. 例如,对于字符串 aabaabaa,如果令 A = aab, B ...

  7. 数据结构(左偏树):HDU 1512 Monkey King

    Monkey King Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Tota ...

  8. 最小生成树——[HAOI2006]聪明的猴子

    题目:[HAOI2006]聪明的猴子 描述: [题目描述] 在一个热带雨林中生存着一群猴子,它们以树上的果子为生.昨天下了一场大雨,现在雨过天晴,但整个雨林的地表还是被大水淹没着, 猴子不会游泳,但跳 ...

  9. 尚学堂 JAVA DAY12 概念总结

    面向过程和面向对象的区别.(5 分)面向过程就好像:一位父亲吩咐自己8岁的小儿子去买啤酒.他需要考虑儿子从出门后的每一个步骤,叮嘱儿子出门怎么走,如何过马路,到了超市如何找到酒水区,怎么识别需要的品牌 ...

  10. HDU 4800/zoj 3735 Josephina and RPG 2013 长沙现场赛J题

    第一年参加现场赛,比赛的时候就A了这一道,基本全场都A的签到题竟然A不出来,结果题目重现的时候1A,好受打击 ORZ..... 题目链接:http://acm.hdu.edu.cn/showprobl ...