跳台阶

//时间复杂度O(2^n) 空间复杂度:递归栈的空间
public class Solution {
public int jumpFloor(int target) {
if(target==1)
return 1;
else if(target==2)
return 2;
else
return jumpFloor(target-1)+jumpFloor(target-2);
}

//时间复杂度O(n) 空间复杂度O(1)
public int jumpFloor(int target) {
int a = 1, b=1, c=1;
for(int i=2;i<=target;i++){
c = a+b;
a = b;
b = c;
}
return c;
}
}

 

posted @ 2021-12-01 21:39  up~up  阅读(86)  评论(0编辑  收藏  举报