摘要: //时间复杂度O(2^n) 空间复杂度:递归栈的空间public class Solution { public int jumpFloor(int target) { if(target==1) return 1; else if(target==2) return 2; else return 阅读全文
posted @ 2021-12-01 21:39 up~up 阅读(86) 评论(0) 推荐(0) 编辑