Oh~Sunny
Oh~Sunny
全部文章
分类
题解(21)
归档
标签
去牛客网
登录
/
注册
Oh~Sunny的博客
全部文章
(共16篇)
python题解(官方)
解释:我们把n级台阶时的跳法看成n的函数,记为f(n)。当n>=2时,第一次跳的时候有两种不同的选择: 第一次跳1级,此时跳法的数目等于后面剩下的n-1级台阶的跳法数目,即为f(n-1); 第一次跳2级,此时跳法数目等于后面剩下的n-2级台阶的跳法数目,即为f(n-2)。因此,n级台阶的不同...
python
官方
2020-01-02
25
1171
python循环方法
class Solution: def Fibonacci(self, n): # write code here if n == 0: return 0 if n == 1: return 1 ...
python
官方
2020-01-02
12
1912
python题解
class Solution: def __init__(self): self.stack1 = [] self.stack2 = [] def push(self, node): # write code here ...
官方
puthon
2020-01-02
15
1065
python题解
class Solution: def GetNext(self, pNode): # write code here # 此节点有右子树 if pNode.right: temp = pNode.right ...
官方
puthon
2019-12-28
8
953
python题解
class Solution: # 返回构造的TreeNode根节点 def reConstructBinaryTree(self, pre, tin): # write code here if len(pre) == 1: ...
官方
puthon
2019-12-28
31
1310
剑指offer官方题解 (python)
class Solution: # 返回从尾部到头部的列表值序列,例如[1,2,3] def printListFromTailToHead(self, listNode): # write code here # 方法一 使用栈 i...
官方
3种
puthon
2019-12-28
32
1674
首页
上一页
1
2
下一页
末页