题目
首先我们介绍二叉树先序序列化的方式,假设序列化的结果字符串为str,初始时str等于空字符串。先序遍历二叉树,如果遇到空节点,就在str的末尾加上“#!”,“#”表示这个节点为空,节点值不存在,当然你也可以用其他的特殊字符,“!”表示一个值的结束。如果遇到不为空的节点,假设节点值为3,就在str的末尾加上“3!”。现在请你实现树的先序序列化。
给定树的根结点root,请返回二叉树序列化后的字符串。
测试用例:
{12,3,#,#,#}
对应输出应该为:
“12!3!#!#!#!”
思路
递归,先序遍历即可。
代码
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class TreeToString:
def __init__(self):
self.res_list = []
def pre_order(self, root):
if not root:
self.res_list.append('#!')
else:
self.res_list.append(str(root.val) + '!')
self.pre_order(root.left)
self.pre_order(root.right)
def toString(self, root):
# write code here
self.pre_order(root)
return ''.join(self.res_list)