-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem #3.py
56 lines (45 loc) · 1.42 KB
/
Problem #3.py
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
# 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.
class Node:
def __init__(self, val, left=None, right=None):
self.val = val
self.left = left
self.right = right
def serialize(root):
if(root == None):
return "none"
else:
return root.val + " " + serialize(root.left) + " " + serialize(root.right)
stringList = None
def deserialize(stringData):
global stringList
stringList = stringData.split(" ")
return createSubTree(stringList[0])
def createSubTree(val):
global stringList
stringList = stringList[1:]
if(val == "none"):
return None
return Node(
val,
createSubTree(stringList[0]),
createSubTree(stringList[0]))
node = Node("root",
Node("L",
Node("L.L",
Node("L.L.L"),
Node("L.L.R")
),
Node("L.R")
),
Node("R",
Node("R.L",
Node("R.L.L"),
Node("R.L.R")
),
Node("R.R",
Node("R.R.L"))
)
)
assert deserialize(serialize(node)).right.left.right.val == "R.L.R"