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

  思路:

  我的思路:新建一个数组存放旋转后的内容,但是怎么把原数组的内容存放在数组中,不清楚。

  leetcode/discuss思路: 思路一:新建数组,复制原数组,将新数组的内容存放在原数组中, nums[(i + k)%n] = numscopy[i]

               思路二:反转先将数组反转位reverse(nums,nums+n) [7,6,5,4,3,2,1]

                   在反转reverse(nums,nums+k) [5,6,7,4,3,2,1]

在反转reverse(nums+k,nums+n) [5,6,7,4,3,2,1]

  代码:

  代码1:思路1 时间、空间复杂度均为(n)

  1. class Solution
  2. {
  3. public:
  4. void rotate(int nums[], int n, int k) //返回值为空
  5. {
  6. if ((n == ) || (k <= ))
  7. {
  8. return; //所以returnd的为空
  9. }
  10.  
  11. // Make a copy of nums
  12. vector<int> numsCopy(n);
  13. for (int i = ; i < n; i++)
  14. {
  15. numsCopy[i] = nums[i];
  16. }
  17.  
  18. // Rotate the elements.
  19. for (int i = ; i < n; i++)
  20. {
  21. nums[(i + k)%n] = numsCopy[i];
  22. }
  23. }
  24. };

  代码2:思路二 时间复杂度为(n),空间复杂度为(1)

 

  1. void rotate(int nums[], int n, int k) {
  2. reverse(nums,nums+n); //解释见思路
  3. reverse(nums,nums+k%n);
  4. reverse(nums+k%n,nums+n);
  5. }
  1. //在leetcode上可以运行的,int n = nums.size()无法通过
  2. class Solution {
  3. public:
  4. void rotate(vector<int>& nums, int k) {
  5. k %= nums.size();
  6. reverse(nums.begin(),nums.end());
  7. reverse(nums.begin(),nums.begin()+k);
  8. reverse(nums.begin()+k,nums.end());
  9. }
  10. };

  自己跑的代码:还存在问题,先放上去。

  1. // Rotate Array.cpp : 定义控制台应用程序的入口点。
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "iostream"
  6. #include"algorithm"
  7. //#include "string"
  8. #include "vector"
  9. using namespace std;
  10. /*
  11. class MyClass1
  12. {
  13. public:
  14. void RotateArray(int nums[], int n, int k)
  15. {
  16. if (n == 0 || k == 0) //return nums[n];
  17.  
  18. vector<int> numscopy[n];
  19.  
  20. for (int i = 0; i < n; i++)
  21. {
  22. numscopy[i] = nums[i];
  23. }
  24.  
  25. for (int i = 0; i < n; i++)
  26. {
  27. nums[(i + k)%n] = numscopy[i];
  28. }
  29. //return nums[n];
  30. }
  31. };*/
  32.  
  33. class MyClass2
  34. {
  35. public:
  36. void RotateArray(int nums[], int n, int k)
  37. {
  38.  
  39. k = k%n;
  40.  
  41. reverse(nums, nums + n);
  42. reverse(nums, nums + (n-k)); //参考代码为 reverse(nums,nums+(n-k)),但是输出不对
  43. reverse(nums + (n-k), nums + n);
  44. //return nums;
  45. }
  46. };
  47.  
  48. int _tmain(int argc, _TCHAR* argv[])
  49. {
  50. size_t const N = ;
  51. int k ;
  52. int x = , y = ;
  53. int arrary[] = { , , , , , , , };
  54. //MyClass1 solution;
  55. MyClass2 solution;
  56. /* 如何一次输入
  57. for (int j = 0; j < N; j++)
  58. {
  59. cin << arrary[j] << ", ";
  60. }*/
  61. cin >> k;
  62. solution.RotateArray(arrary, N, k);
  63. //将数组一次全部输出
  64. cout << "[";
  65. for (int i = ; i < N; i++)
  66. {
  67. cout <<arrary[i] << ", ";
  68. }
  69. cout << "]"<<endl;
  70. //cout << arrary[i] << endl;
  71. //cout << y << endl;
  72. system("pause");
  73. return ;
  74. }

Factorial Trailing Zeroe

  题目:

  Given an integer n, return the number of trailing zeroes in n!.

  给定一个整数n,求n!中0的个数

  思路:

  我的思路:刚开始将题目理解错误,当成求n!了

  leetcode/dicuss思路:思路一:求0的个数,就是找10的个数,就是找2*5的个数,2出现的次数一定比5多,所以是5的个数决定的个数。那就求n中5个数。

            思路二:假设n=100,100/5=20,但是100中并不是有20个5 ,而应该20/5=4,20+4=24个5.

  代码1:思路1

  1. class Solution {
  2. public:
  3. int trailingZeroes(int n) {
  4. int res=;
  5. while(n){ //为什么要迭代
  6. n/=;
  7. res+=n;
  8. }
  9. return res;
  10. }
  11. };

  代码2:代码2

  1. class Solution {
  2. public:
  3. int trailingZeroes(int n) {
  4. int count = ;
  5. for (long long i = ; n / i; i *= )
  6. count += n / i;
  7. return count;
  8. }
  9. };

  大牛的解释:https://leetcode.com/discuss/42624/4-lines-4ms-c-solution-with-explanations

  Well, to compute the number of trailing zeros, we need to first think clear about what will generate a trailing 0? Obviously, a number multiplied by 10 will have a trailing 0 added to it. So we only need   to find out how many 10's will appear in the expression of the factorial. Since 10 = 2 * 5 and there are a bunch more 2's (each even number will contribute at least one 2), we only need to count the   number of 5's.

  Now let's see what numbers will contribute a 5. Well, simply the multiples of 5, like 5, 10, 15, 20, 25, 35, .... So is the result simply n / 5? Well, not that easy. Notice that some numbers may      contribute more than one 5, like 25 = 5 * 5. Well, what numbers will contribute more than one 5? Ok, you may notice that only multiples of the power of 5 will contribute more than one 5. For      example,   multiples of 25 will contribute at least two 5's.

  Well, how to count them all? If you try some examples, you may finally get the result, which is n / 5 + n / 25 + n / 125 + .... The idea behind this expression is: all the multiples of 5 will contribute   one 5, the multiples of 25 will contribute one more 5 and the multiples of 125 will contribute another one more 5... and so on. Now, we can write down the following code, which is pretty short.

  带main函数跑的代码:

  1. #include "stdafx.h"
  2. #include "iostream"
  3. using namespace std;
  4.  
  5. class MyClass
  6. {
  7. public:
  8. int FactorialTrailingZeroes(int n)
  9. {
  10. int res = ;
  11. //cout << res << endl;
  12. for(int i = ; i < n ; i *= )
  13. {
  14. //cout << i << endl; //测试
  15. res += n / i;
  16. //cout << res << endl;
  17. }
  18. return res;
  19. }
  20. };
  21.  
  22. class While
  23. {
  24. public:
  25. int FactorialTrailingZeroes(int n)
  26. {
  27. int res = ;
  28. while (n)
  29. {
  30. n = n/;
  31. res += n;
  32. }
  33. return res;
  34. }
  35. };
  36.  
  37. int _tmain(int argc, _TCHAR* argv[])
  38. {
  39. //MyClass solution;
  40. While solution;
  41. int nums ;
  42. int m = ;
  43. cin >> nums;
  44. m = solution.FactorialTrailingZeroes(nums); //32,33行写反了,所以进不了for循环
  45. cout << m << endl;
  46. system("pause");
  47. return ;
  48. }

  

2016.5.16——leetcode:Rotate Array,Factorial Trailing Zeroe的更多相关文章

  1. C++ STL@ list 应用 (leetcode: Rotate Array)

    STL中的list就是一双向链表,可高效地进行插入删除元素. List 是 C++标准程式库 中的一个 类 ,可以简单视之为双向 连结串行 ,以线性列的方式管理物件集合.list 的特色是在集合的任何 ...

  2. Python3解leetcode Rotate Array

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

  3. LeetCode Rotate Array 翻转数组

    题意:给定一个数组,将该数组的后k位移动到前n-k位之前.(本题在编程珠玑中第二章有讲) 思路: 方法一:将后K位用vector容器装起来,再移动前n-k位到后面,再将容器内k位插到前面. class ...

  4. [LeetCode] Rotate Array 旋转数组

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

  5. 2016.5.16——leetcode:Reverse Bits(超详细讲解)

    leetcode:Reverse Bits 本题目收获 移位(<<  >>), 或(|),与(&)计算的妙用 题目: Reverse bits of a given 3 ...

  6. [leetcode]Rotate Array

    in place交换 如果是k步,那么就是把后面k个放到前面了嘛. 我们先把整个数组reverse,然后把前面的reverse回来,再把后面的reverse回来 对于AB我们要通过reverse操作得 ...

  7. 【leetcode❤python】172. Factorial Trailing Zeroes

    #-*- coding: UTF-8 -*-#给定一个整数N,那么N的阶乘N!末尾有多少个0? 比如:N=10,N!=3628800,N!的末尾有2个0.#所有的尾部的0可以看做都是2*5得来的,所以 ...

  8. LeetCode(172)Factorial Trailing Zeroes

    题目 Given an integer n, return the number of trailing zeroes in n!. Note: Your solution should be in ...

  9. LeetCode: Reverse Words in a String && Rotate Array

    Title: Given an input string, reverse the string word by word. For example,Given s = "the sky i ...

随机推荐

  1. Dubbo学习(一) Dubbo原理浅析

    一.初入Dubbo Dubbo学习文档: http://dubbo.incubator.apache.org/books/dubbo-user-book/ http://dubbo.incubator ...

  2. MachineLearning Exercise 4 :Neural Networks Learning

    nnCostFunction 消耗公式: a1 = [ones(m,) X]; z2 = a1*Theta1'; pre = sigmoid(a1*Theta1'); a2 = [ones(m,) p ...

  3. 函数防抖与函数节流 封装好的debounce和throttle函数

    /** * 空闲控制 返回函数连续调用时,空闲时间必须大于或等于 wait,func 才会执行 * * @param {function} func 传入函数,最后一个参数是额外增加的this对象,. ...

  4. 【刷题】BZOJ 4530 [Bjoi2014]大融合

    Description 小强要在N个孤立的星球上建立起一套通信系统.这套通信系统就是连接N个点的一个树. 这个树的边是一条一条添加上去的.在某个时刻,一条边的负载就是它所在的当前能够 联通的树上路过它 ...

  5. 【刷题】洛谷 P3690 【模板】Link Cut Tree (动态树)

    题目背景 动态树 题目描述 给定n个点以及每个点的权值,要你处理接下来的m个操作.操作有4种.操作从0到3编号.点从1到n编号. 0:后接两个整数(x,y),代表询问从x到y的路径上的点的权值的xor ...

  6. [洛谷P4819][中山市选]杀人游戏

    题目大意:有一张$n$个点$m$条边的有向图,有一个关键点,如果你访问一个点,你会知道它连出的边中有没有关键点,以及若有的话是哪个.问最优策略下不访问关键点而知道关键点的概率 题解:发现若一个点不是关 ...

  7. C++中三种传递参数方法的效率分析

    众所周知,在C++中有三种参数传递的方式: 按值传递(pass by value) #include <iostream> using namespace std; void swap(i ...

  8. 洛谷 P4128 [SHOI2006]有色图 解题报告

    P4128 [SHOI2006]有色图 题目描述 如果一张无向完全图(完全图就是任意两个不同的顶点之间有且仅有一条边相连)的每条边都被染成了一种颜色,我们就称这种图为有色图.如果两张有色图有相同数量的 ...

  9. Java之Object类和常用的API

    Object类和常用的API 学习过程中的笔记,涉及到Objetc中的equals方法和toString方法,日期类Date,日历类Calendar,日期格式化类SimpleDateFormat以及基 ...

  10. 那些ie6已支持的方法属性,成为事实标准。或者方便大家的api

    很多api,都是ie6实现,后来其他w3c或其他浏览器支持,或者用类似的方法模拟 onselectionchange  判断选区改变 ,chrome已支持 Element.contains   判断元 ...