剑指Offer_9

题目

一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。求该青蛙跳上一个n级的台阶总共有多少种跳法。

解题思路

对于每个台阶来说,青蛙都可以选择踩不踩

1
2
3
4
5
6
7
8
public class Solution {
public int JumpFloorII(int target) {
if(target <= 1){
return target;
}
return (int)Math.pow(2, target-1);
}
}

不用Math的函数

1
return 1 << --target;