博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode - Climbing Stairs
阅读量:5260 次
发布时间:2019-06-14

本文共 860 字,大约阅读时间需要 2 分钟。

2013.12.22 04:13

You are climbing a stair case. It takes n steps to reach to the top.

Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?

Solution:

  Search for "" and calculate the nth element in the sequence.

  Time complexity is O(n), space complexity is O(1).

Accepted code:

1 class Solution { 2 public: 3     int climbStairs(int n) { 4         // Note: The Solution object is instantiated only once and is reused by each test case. 5         int f1, f2, f3; 6          7         f1 = 0; 8         f2 = 1; 9         10         if(n <= 0){11             return 0;12         }13         14         for(int i = 0; i < n; ++i){15             f3 = f1 + f2;16             f1 = f2;17             f2 = f3;18         }19         20         return f3;21     }22 };

 

转载于:https://www.cnblogs.com/zhuli19901106/p/3485745.html

你可能感兴趣的文章
283. Move Zeroes把零放在最后面
查看>>
Visual Studio Code 打开.py代码报Linter pylint is not installed解决办法
查看>>
Python 数据类型
查看>>
S5PV210根文件系统的制作(一)
查看>>
centos下同时启动多个tomcat
查看>>
slab分配器
查看>>
数据清洗
查看>>
【读书笔记】C#高级编程 第三章 对象和类型
查看>>
针对sl的ICSharpCode.SharpZipLib,只保留zip,gzip的流压缩、解压缩功能
查看>>
【转】代码中特殊的注释技术——TODO、FIXME和XXX的用处
查看>>
【SVM】libsvm-python
查看>>
Jmeter接口压力测试,Java.net.BindException: Address already in use: connect
查看>>
Leetcode Balanced Binary Tree
查看>>
Leetcode 92. Reverse Linked List II
查看>>
九.python面向对象(双下方法内置方法)
查看>>
go:channel(未完)
查看>>
[JS]递归对象或数组
查看>>
LeetCode(17) - Letter Combinations of a Phone Number
查看>>
Linux查找命令对比(find、locate、whereis、which、type、grep)
查看>>
路由器外接硬盘做nas可行吗?
查看>>