python---数据结构---线索二叉树

发布时间:2024年01月19日
class Node:
    def __init__(self, value):
        self.value = value
        self.left = None
        self.right = None
        self.left_thread = False
        self.right_thread = False


def inorder_threading(node):
    if node is not None:
        # 确保先访问左子节点
        if not node.left_thread:
            inorder_threading(node.left)
            node.left_thread = True
        print(node.value)
        # 确保先访问右子节点
        if not node.right_thread:
            inorder_threading(node.right)
            node.right_thread = True



root = Node(1)
root.left = Node(2)
root.right = Node(3)
root.left.left = Node(4)
root.left.right = Node(5)
root.right.left = Node(6)
root.right.right = Node(7)

# 对左子节点线索化
inorder_threading(root)

文章来源:https://blog.csdn.net/2202_75787160/article/details/135704467
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。