二叉树查找后继节点(即中序遍历情况下的这个节点的下一个) Python实现
Posted icekx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二叉树查找后继节点(即中序遍历情况下的这个节点的下一个) Python实现相关的知识,希望对你有一定的参考价值。
1.若节点类型没有parent属性,采用中序遍历方式获取后继节点
1 def getSuccessorNode(head, node): 2 if (not node) or (not head): 3 return None 4 stack = [] 5 flag = False 6 while head or len(stack) > 0: 7 if head: 8 stack.append(head) 9 head = head.left 10 else: 11 head = stack.pop() 12 if flag: 13 return head 14 if head == node: # 若找到当前节点,则下一个弹出的节点即为后继节点 15 flag = True 16 head = head.right 17 return None
2.若节点存在parent属性即
1 class TreeNode: 2 def __init__(self, x=0): 3 self.val = x 4 self.parent = None 5 self.left = None 6 self.right = None 7 8 9 def getSuccessorNode(node): 10 if not node : 11 return None 12 if node.right: # 如果当前节点有右子树,则返回右子树的最左边节点 13 node = node.right 14 while node.left: 15 node = node.left 16 return node 17 else: # 没有右子树 则向上找寻父节点,直到为父节点的左子树,返回父节点,否则返回空 18 par = node.parent 19 while not par and par.left != node: 20 node = par 21 par = par.parent 22 return par
以上是关于二叉树查找后继节点(即中序遍历情况下的这个节点的下一个) Python实现的主要内容,如果未能解决你的问题,请参考以下文章