LeetCode-70.Climbing Stairs

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?

Note: Given n will be a positive integer.

Example 1:

Input: 2
Output: 2
Explanation: There are two ways to climb to the top.
1. 1 step + 1 step
2. 2 steps

Example 2:

Input: 3
Output: 3
Explanation: There are three ways to climb to the top.
1. 1 step + 1 step + 1 step
2. 1 step + 2 steps
3. 2 steps + 1 step

时间复杂度O(n)
1
2
3
4
5
6
7
8
9
10
11
public int climbStairs(int n) {//递推 斐波那契数 my
        int x1 = 0;
        int x2=1;
        int re = 0;
        for (int i = 1; i <= n; i++) {
            re = x1+x2;
            x1= x2;
            x2 =re;
        }
        return re;
    }  

 也可使用递归,需保存中间结果以防止重复计算

相关题

变态跳台阶 剑指offer https://www.cnblogs.com/zhacai/p/10677405.html

posted @   月半榨菜  阅读(102)  评论(0编辑  收藏  举报
编辑推荐:
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
阅读排行:
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 《HelloGitHub》第 106 期
· 数据库服务器 SQL Server 版本升级公告
· 深入理解Mybatis分库分表执行原理
· 使用 Dify + LLM 构建精确任务处理应用
点击右上角即可分享
微信分享提示