前序、中序、后序、层序遍历 打包,讲解很棒!
只需要改变遍历的顺序即可
前序遍历class Solution(object):
def preorderTraversal(self, root):
"""
2021-09-28