01/10/2018, 16:56

Hỏi về triển khai thực hiện serialize(root)

em hiện tại không hiểu lắm về cách chuyển đổi def và init trong c++ ạ, em thấy bên python và c# có dùng nhưng bên c++ em thấy ít dùng, mong tiền bối chỉ bảo ạ.
Dưới đây là yêu cầu của đề ạ, em muốn làm nó bằng c++ thì nên chuyển thế nào ạ?

Given the root to a binary tree, implement serialize(root), which serializes the tree into a string, and deserialize(s), which deserializes the string back into the tree.

For example, given the following Node class

class Node:
    def __init__(self, val, left=None, right=None):
        self.val = val
        self.left = left
        self.right = right

The following test should pass:

node = Node('root', Node('left', Node('left.left')), Node('right'))
assert deserialize(serialize(node)).left.left.val == 'left.left'
Bài liên quan
0