Skip to content

serialize deserialize binary tree #9625

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 29, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
140 changes: 140 additions & 0 deletions data_structures/binary_tree/serialize_deserialize_binary_tree.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
class TreeNode:
"""
A binary tree node has a value, left child, and right child.

Props:
val(int): The value of the node.
left: The left child of the node.
right: The right child of the node.
"""

def __init__(self, val: int = 0, left=None, right=None) -> None:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please provide type hint for the parameter: left

Please provide type hint for the parameter: right

if not isinstance(val, int):
raise TypeError("Value must be an integer.")
self.val = val
self.left = left
self.right = right


# Helper functions
def are_trees_identical(root1: TreeNode, root2: TreeNode) -> bool:
"""
Check if two binary trees are identical.

Args:
root1 (TreeNode): Tree 1
root2 (TreeNode): Tree 2

Returns:
bool: True if the trees are identical, False otherwise.

>>> root1 = TreeNode(1)
>>> root1.left = TreeNode(2)
>>> root1.right = TreeNode(3)
>>> root2 = TreeNode(1)
>>> root2.left = TreeNode(2)
>>> root2.right = TreeNode(3)
>>> are_trees_identical(root1, root2)
True
>>> root1 = TreeNode(1)
>>> root1.left = TreeNode(2)
>>> root1.right = TreeNode(3)
>>> root2 = TreeNode(1)
>>> root2.left = TreeNode(2)
>>> root2.right = TreeNode(4)
>>> are_trees_identical(root1, root2)
False
"""

if not root1 and not root2:
return True
if not root1 or not root2:
return False

return (
root1.val == root2.val
and are_trees_identical(root1.left, root2.left)
and are_trees_identical(root1.right, root2.right)
)


# Main functions
def serialize(root: TreeNode) -> str:
"""
Serialize a binary tree to a string using preorder traversal.

Args:
root(TreeNode): The root of the binary tree.

Returns:
A string representation of the binary tree.

>>> root = TreeNode(1)
>>> root.left = TreeNode(2)
>>> root.right = TreeNode(3)
>>> root.right.left = TreeNode(4)
>>> root.right.right = TreeNode(5)
>>> serialize(root)
'1,2,null,null,3,4,null,null,5,null,null'
>>> root = TreeNode(1)
>>> serialize(root)
'1,null,null'
"""

# Use "null" to represent empty nodes in the serialization
if not root:
return "null"

return str(root.val) + "," + serialize(root.left) + "," + serialize(root.right)


def deserialize(data: str) -> TreeNode:
"""
Deserialize a string to a binary tree.

Args:
data(str): The serialized string.

Returns:
The root of the binary tree.

>>> root = TreeNode(1)
>>> root.left = TreeNode(2)
>>> root.right = TreeNode(3)
>>> root.right.left = TreeNode(4)
>>> root.right.right = TreeNode(5)
>>> serialzed_data = serialize(root)
>>> deserialized = deserialize(serialzed_data)
>>> are_trees_identical(root, deserialized)
True
>>> root = TreeNode(1)
>>> serialzed_data = serialize(root)
>>> dummy_data = "1,2,null,null,3,4,null,null,5,null,null"
>>> deserialized = deserialize(dummy_data)
>>> are_trees_identical(root, deserialized)
False
"""

# Split the serialized string by comma to get node values
nodes = data.split(",")

def build_tree():

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As there is no test file in this pull request nor any test function or class in the file data_structures/binary_tree/serialize_deserialize_binary_tree.py, please provide doctest for the function build_tree

Please provide return type hint for the function: build_tree. If the function does not return a value, please provide the type hint as: def function() -> None:

# Get the next value from the list
val = nodes.pop(0)

if val == "null":
return None

node = TreeNode(int(val))
node.left = build_tree() # Recursively build left subtree
node.right = build_tree() # Recursively build right subtree

return node

return build_tree()


if __name__ == "__main__":
import doctest

doctest.testmod()