-
-
Notifications
You must be signed in to change notification settings - Fork 46.6k
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
Changes from 2 commits
cef886c
5923c92
2e10621
44ec94d
7cc2602
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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: | ||
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(): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 Please provide return type hint for the function: |
||
# 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() |
There was a problem hiding this comment.
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