一个台阶总共有n 级,如果一次可以跳1 级,也可以跳2 级,求总共

WBOY
Release: 2016-06-07 15:09:49
Original
2811 people have browsed it

题目: 一个台阶总共有n 级,如果一次可以跳1 级,也可以跳2 级,求总共有多少总跳法,并分析算法的时间复杂度。 注: 这道题最近经常出现,包括MicroStrategy 等比较重视算法的公司都曾先后选用过个这道题作为面试题或者笔试题。 思路一: 首先我们考虑最简

题目:

一个台阶总共有n 级,如果一次可以跳1 级,也可以跳2 级,求总共有多少总跳法,并分析算法的时间复杂度。

注:
这道题最近经常出现,包括MicroStrategy 等比较重视算法的公司都曾先后选用过个这道题作为面试题或者笔试题。

思路一:

首先我们考虑最简单的情况:如果只有1 级台阶,那显然只有一种跳法,如果有2 级台阶,那就有两种跳的方法了:一种是分两次跳,每次跳1 级;另外一种就是一次跳2 级。
现在我们再来讨论一般情况:我们把n 级台阶时的跳法看成是n 的函数,记为f(n)。当n>2 时,第一次跳的时候就有两种不同的选择:一是第一次只跳1 级,此时跳法数目等于后面剩下的n-1 级台阶的跳法数目,即为f(n-1);另外一种选择是第一次跳2 级,此时跳法数目等于后面剩下的n-2 级台阶的跳法数目,即为f(n-2)。
因此n 级台阶时的不同跳法的总数f(n) = f(n-1) + f(n-2)。
我们把上面的分析用一个公式总结如下:
/ 1 (n=1)
f(n) = 2 (n=2)
\ f(n-1) + (f-2) (n>2)
分析到这里,相信很多人都能看出这就是我们熟悉的Fibonacci 序列。(O(n))

代码如下:

[cpp]view plaincopyprint?

  1. /*----------------------------
  2. Copyright by yuucyf. 2011.08.16
  3. -----------------------------*/
  4. #include "stdafx.h"
  5. #include
  6. usingnamespacestd;
  7. intJumpStep(intn)
  8. {
  9. if(nreturn0;
  10. if(n == 1 || n == 2)returnn;
  11. return(JumpStep(n-1) + JumpStep(n-2));
  12. }
  13. int_tmain(intargc, _TCHAR* argv[])
  14. {
  15. intnStep = 0;
  16. cout "请输入台阶数:";
  17. cin >> nStep;
  18. cout "台阶数为"",那么总共有""种跳法."
  19. return0;
  20. }
/*---------------------------- Copyright by yuucyf. 2011.08.16 -----------------------------*/ #include "stdafx.h" #include  using namespace std; int JumpStep(int n) { if (n > nStep; cout 
Copy after login
Related labels:
Can
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!