标签:blog logs pre log style 思路 div int span
一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。求该青蛙跳上一个n级的台阶总共有多少种跳法。
思路:
笔算前几个得到规律是2的n次方。
1 public class Solution { 2 public int JumpFloorII(int target) { 3 int res = 1; 4 for(int i = 0;i<target-1;i++){ 5 res = res*2; 6 } 7 return res; 8 9 } 10 }
标签:blog logs pre log style 思路 div int span
原文地址:http://www.cnblogs.com/LoganChen/p/6394685.html