Leetcode 70 Climbing Stairs
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 70 Climbing Stairs相关的知识,希望对你有一定的参考价值。
其实就是斐波那契数列
1 class Solution { 2 public: 3 int climbStairs(int n) { 4 int f1 = 0; 5 int f2 = 1; 6 int f3 = 0; 7 for(int i = 0; i < n; ++i){ 8 f3 = f2 + f1; 9 f1 = f2; 10 f2 = f3; 11 } 12 return f3; 13 } 14 };
以上是关于Leetcode 70 Climbing Stairs的主要内容,如果未能解决你的问题,请参考以下文章