forked from yidao620c/core-algorithm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinary_tree.py
More file actions
40 lines (36 loc) · 880 Bytes
/
binary_tree.py
File metadata and controls
40 lines (36 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
"""
File: binary_tree.py
Created Time: 2022-12-20
Author: a16su (lpluls001@gmail.com)
"""
import sys
from pathlib import Path
sys.path.append(str(Path(__file__).parent.parent))
from algorithms.models import TreeNode, print_tree
"""Driver Code"""
if __name__ == "__main__":
# 初始化二叉树
# 初始化节点
n1 = TreeNode(val=1)
n2 = TreeNode(val=2)
n3 = TreeNode(val=3)
n4 = TreeNode(val=4)
n5 = TreeNode(val=5)
# 构建引用指向(即指针)
n1.left = n2
n1.right = n3
n2.left = n4
n2.right = n5
print("\n初始化二叉树\n")
print_tree(n1)
# 插入与删除节点
P = TreeNode(0)
# 在 n1 -> n2 中间插入节点 P
n1.left = P
P.left = n2
print("\n插入节点 P 后\n")
print_tree(n1)
# 删除节点
n1.left = n2
print("\n删除节点 P 后\n")
print_tree(n1)