码迷,mamicode.com
首页 > 其他好文 > 详细

70.爬楼梯

时间:2020-04-22 09:37:01      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:main   爬楼梯   style   转移   初始   print   状态   stream   bst   

动态规划:

1、状态定义

2、状态初始化

3、状态转移

/*

*/
#include<stdio.h>
#include<malloc.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
#include<string.h>
#include<iostream>
int climbStairs(int n){
    int dp[n+1],i;
    dp[0]=1;
    dp[1]=1;
    for(i=2;i<=n;i++){
        dp[i]=dp[i-1]+dp[i-2];
    }
    return dp[n];
}
int main()
{
    int rs = climbStairs(4);

    printf("%d\n",rs);
    return 0;
}

 

70.爬楼梯

标签:main   爬楼梯   style   转移   初始   print   状态   stream   bst   

原文地址:https://www.cnblogs.com/zhaohuan1996/p/12749581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!