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.

程序代码:

int climbStairs(int n) {
    int TwoStep=1,OneStep=1,i,sum=0;
    if(n==1)
        sum = 1;
    for(i=2;i<=n;i++)
    {
        sum = TwoStep+OneStep;
        TwoStep = OneStep;
        OneStep= sum;
    }
    return sum;
}
全部评论

相关推荐

点赞 评论 收藏
分享
头像
10-09 19:35
门头沟学院 Java
洛必不可达:java的竞争激烈程度是其他任何岗位的10到20倍
点赞 评论 收藏
分享
感性的干饭人在线蹲牛友:🐮 应该是在嘉定这边叭,禾赛大楼挺好看的
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务