mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 11:56:30 +08:00
36 lines
772 B
Python
36 lines
772 B
Python
"""
|
|
File: preorder_traversal_i_compact.py
|
|
Created Time: 2023-04-15
|
|
Author: Krahets (krahets@163.com)
|
|
"""
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
sys.path.append(str(Path(__file__).parent.parent))
|
|
from modules import TreeNode, print_tree, list_to_tree
|
|
|
|
|
|
def pre_order(root: TreeNode):
|
|
"""前序遍历:例题一"""
|
|
if root is None:
|
|
return
|
|
if root.val == 7:
|
|
# 记录解
|
|
res.append(root)
|
|
pre_order(root.left)
|
|
pre_order(root.right)
|
|
|
|
|
|
"""Driver Code"""
|
|
if __name__ == "__main__":
|
|
root = list_to_tree([1, 7, 3, 4, 5, 6, 7])
|
|
print("\n初始化二叉树")
|
|
print_tree(root)
|
|
|
|
# 前序遍历
|
|
res = list[TreeNode]()
|
|
pre_order(root)
|
|
|
|
print("\n输出所有值为 7 的节点")
|
|
print([node.val for node in res])
|