Polish the content

Polish the chapter preface, introduction and complexity anlysis
This commit is contained in:
krahets
2023-08-08 23:16:33 +08:00
parent 9ed16db68e
commit 932d14644d
26 changed files with 215 additions and 182 deletions

View File

@ -67,9 +67,9 @@ def print_tree(
print_tree(root.left, trunk, False)
def print_dict(mapp: dict):
def print_dict(hmap: dict):
"""Print a dict"""
for key, value in mapp.items():
for key, value in hmap.items():
print(key, "->", value)