427. Construct Quad Tree
Read the full problem statement on LeetCode.
Difficulty: medium Acceptance: 77% Topics: Array, Divide and Conquer, Tree, Matrix
View full problem on LeetCode Reading material
Reference solution (spoiler · python)
# Time: O(n)
# Space: O(h)
class Node(object):
def __init__(self, val, isLeaf, topLeft, topRight, bottomLeft, bottomRight):
self.val = val
self.isLeaf = isLeaf
self.topLeft = topLeft
self.topRight = topRight
self.bottomLeft = bottomLeft
self.bottomRight = bottomRight
class Solution(object):
def construct(self, grid):
"""
:type grid: List[List[int]]
:rtype: Node
"""
def dfs(grid, x, y, l):
if l == 1:
return Node(grid[x][y] == 1, True, None, None, None, None)
half = l // 2
topLeftNode = dfs(grid, x, y, half)
topRightNode = dfs(grid, x, y+half, half)
bottomLeftNode = dfs(grid, x+half, y, half)
bottomRightNode = dfs(grid, x+half, y+half, half)
if topLeftNode.isLeaf and topRightNode.isLeaf and \
bottomLeftNode.isLeaf and bottomRightNode.isLeaf and \
topLeftNode.val == topRightNode.val == bottomLeftNode.val == bottomRightNode.val:
return Node(topLeftNode.val, True, None, None, None, None)
return Node(True, False, topLeftNode, topRightNode, bottomLeftNode, bottomRightNode)
if not grid:
return None
return dfs(grid, 0, 0, len(grid))
Solution from kamyu104/LeetCode-Solutions · MIT