Oh~Sunny
Oh~Sunny
全部文章
分类
题解(21)
归档
标签
去牛客网
登录
/
注册
Oh~Sunny的博客
全部文章
(共4篇)
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