卖萌的弱渣

I am stupid, I am hungry.

Binary Tree Serialization

Design an algorithm and write code to serialize and deserialize a binary tree. Writing the tree to a file is called ‘serialization’ and reading back from the file to reconstruct the exact same binary tree is ‘deserialization’.

There is no limit of how you deserialize or serialize a binary tree, you only need to make sure you can serialize a binary tree to a string and deserialize this string to the original structure.

Example

An example of testdata: Binary tree {3,9,20,#,#,15,7}, denote the following structure:

1
2
3
4
5
  3
 / \
9  20
  /  \
 15   7

Our data serialization use bfs traversal. This is just for when you got wrong answer and want to debug the input.

You can use other method to do serializaiton and deserialization.

Solution

  • Time: O(n)
  • Use pre-order to implement it
  • when you do de-serialization, remember to pop the list.
(Binary-Tree-Serialization.py) download
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
"""
Definition of TreeNode:
class TreeNode:
    def __init__(self, val):
        self.val = val
        self.left, self.right = None, None
"""
class Solution:
    '''
    @param root: An object of TreeNode, denote the root of the binary tree.
    This method will be invoked first, you should design your own algorithm
    to serialize a binary tree which denote by a root node to a string which
    can be easily deserialized by your own "deserialize" method later.
    '''
    def serialize_helper(self, root, ret):
        ret.append(root.val)
        if root.left != None:
            self.serialize_helper(root.left, ret)
        else:
            ret.append('#')
        if root.right != None:
            self.serialize_helper(root.right,ret)
        else:
            ret.append('#')
        return ret

    def serialize(self, root):
        # write your code here
        ret = []
        if root == None:
            return ret
        self.serialize_helper(root,ret)
        return ret

    '''
    @param data: A string serialized by your serialize method.
    This method will be invoked second, the argument data is what exactly
    you serialized at method "serialize", that means the data is not given 
    by system, it's given by your own serialize method. So the format of data is
    designed by yourself, and deserialize it here as you serialize it in 
    "serialize" method.
    '''
    def deserialize_helper(self, data):
        if data == None:
            return None
        if data[0] == '#':
            data.pop(0)
            return None

        Node = TreeNode(data[0])
        data.pop(0)
        Node.left = self.deserialize_helper(data)
        Node.right = self.deserialize_helper(data)
        return Node

    def deserialize(self, data):
        # write your code here
        if data == None or len(data) == 0:
            return None
        return self.deserialize_helper(data)