二叉树的相关在线编程(python)
摘要:
问题一: 正确的后序遍历结果: 1 class Solution: 2 def VerifySquenceOfBST(self, sequence): 3 # write code here 4 if sequence == None or len(sequence) == 0: 5 return 阅读全文
posted @ 2019-03-21 14:22 周健康 阅读(484) 评论(0) 推荐(0) 编辑