forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall-possible-full-binary-trees.py
More file actions
36 lines (28 loc) · 954 Bytes
/
all-possible-full-binary-trees.py
File metadata and controls
36 lines (28 loc) · 954 Bytes
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
# Time: O(n * 4^n / n^(3/2)) ~= sum of Catalan numbers from 1 .. N
# Space: O(n * 4^n / n^(3/2)) ~= sum of Catalan numbers from 1 .. N
class TreeNode(object):
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution(object):
def __init__(self):
self.__memo = {1: [TreeNode(0)]}
def allPossibleFBT(self, N):
"""
:type N: int
:rtype: List[TreeNode]
"""
if N % 2 == 0:
return []
if N not in self.__memo:
result = []
for i in xrange(N):
for left in self.allPossibleFBT(i):
for right in self.allPossibleFBT(N-1-i):
node = TreeNode(0)
node.left = left
node.right = right
result.append(node)
self.__memo[N] = result
return self.__memo[N]