要勇敢的递推试一下,数学关系要搞明白,算法其实就是考察数学。 递推式子: 1(1),2(1+1),4(1+2+1),8(1+2+4+1),16(1+2+4+8+1) public int jumpFloorII(int target) { if (target == 0 || target == 1) return 1; return (int) Math.pow(2,target-1); }注意Math包的一些常用类。 import java.lang.Math; double r= Math.pow(double a, double b) a的b...