To the Top
File:  root - text - article - 2019 - 12 - tree-serialization.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 368 Views, 14443 Search Bots | 171 Words

Subscribe to Feed Burner | Browse | Archive
Hi, here's your problem today. This problem was recently asked by Apple:

You are given the root of a binary tree. You need to implement 2 functions:

1. serialize(root) which serializes the tree into a string representation
2. deserialize(s) which deserializes the string back to the original tree that it represents

For this problem, often you will be asked to design your own serialization format. However, for simplicity, let's use the pre-order traversal of the tree. Here's your starting point:


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

def __str__(self):
# pre-order printing of the tree.
result = ''
result += str(self.val)
if self.left:
result += str(self.left)
if self.right:
result += str(self.right)
return result

def serialize(root):
# Fill this in.

def deserialize(data):
# Fill this in.

# 1
# / \
# 3 4
# / \ \
# 2 5 7
tree = Node(1)
tree.left = Node(3)
tree.left.left = Node(2)
tree.left.right = Node(5)
tree.right = Node(4)
tree.right.right = Node(7)

print serialize(tree)
# 1 3 2 # # 5 # # 4 # 7 # #
print deserialize('1 3 2 # # 5 # # 4 # 7 # #')
# 132547
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 368 Views, 14443 Search Bots | 171 Words Subscribe to Feed Burner

Related Articles

  1. Daily Interview Problem: Spiral Traversal of Grid
  2. CVE-2015-8874 - cPanel EasyApache Vulnerabilities
  3. ImageMagick Vulnerabilities -  CVE-2016–3714
  4. Daily Interview Problem: Contiguous Subarray with Maximum Sum
  5. Design Tic-Tac-Toe
  6. Daily Interview Puzzle: Falling Dominoes
  7. Plus One
  8. Daily Interview Problem: Queue Using Two Stacks
  9. Daily Interview Problem: Merge List Of Number Into Ranges
  10. Daily Interview Problem: Product of Array Except Self

Comments (0)

    Be the first one to comment this page !


Page Edited: October 30 2020 14:21:09 | RSS Subscription
How to Cook a Perfect Steak? | <meta name="robots" content="index, follow">