博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[8.1] Triple Step
阅读量:5080 次
发布时间:2019-06-12

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

A child is running up a staircase with n steps and can hop either 1 step, 2 steps, or 3 steps at a time. Implement a method to count how many possible ways the child can run up the stairs.

 

public static int getPossibleWays(final int n) {        int[] memo = new int[n + 1];        return helper(n, memo);    }    private static int helper(int i, int[] memo) {        if(i == 0 || i == 1) return 1;        if(i ==2) return 2;        if(i >=3 && memo[i] == 0) {            memo[i] = helper(i -1, memo) + helper(i -2, memo) + helper(i -3, memo);        }        return memo[i];    }

 

转载于:https://www.cnblogs.com/Phoebe815/p/6143496.html

你可能感兴趣的文章
Linux基本操作
查看>>
osg ifc ifccolumn
查看>>
C++ STL partial_sort
查看>>
3.0.35 platform 设备资源和数据
查看>>
centos redis 安装过程,解决办法
查看>>
IOS小技巧整理
查看>>
WebDriverExtensionsByC#
查看>>
我眼中的技术地图
查看>>
lc 145. Binary Tree Postorder Traversal
查看>>
sublime 配置java运行环境
查看>>
在centos上开关tomcat
查看>>
重启rabbitmq服务
查看>>
正则表达式(进阶篇)
查看>>
无人值守安装linux系统
查看>>
【传道】中国首部淘宝卖家演讲公开课:农业本该如此
查看>>
jQuery应用 代码片段
查看>>
MVC+Servlet+mysql+jsp读取数据库信息
查看>>
黑马程序员——2 注释
查看>>
用OGRE1.74搭建游戏框架(三)--加入人物控制和场景
查看>>
转化课-计算机基础及上网过程
查看>>