剑指offer–(9) 变态跳台阶
问题描述
一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。求该青蛙跳上一个n级的台阶总共有多少种跳法。
思路描述
代码实现:
public class Solution {
public int JumpFloorII(int target) {
if(target==0)
return 0;
return (int) Math.pow(2, target-1);
}
}