摘要: /***一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法。*/public class Solution { public int JumpFloor(int target) { if(target<=2){ retu... 阅读全文
posted @ 2015-06-19 17:24 激战 阅读(513) 评论(0) 推荐(0) 编辑