Medium
Given a n * n
matrix grid
of 0's
and 1's
only. We want to represent the grid
with a Quad-Tree.
Return the root of the Quad-Tree representing the grid
.
Notice that you can assign the value of a node to True or False when isLeaf
is False, and both are accepted in the answer.
A Quad-Tree is a tree data structure in which each internal node has exactly four children. Besides, each node has two attributes:
val
: True if the node represents a grid of 1’s or False if the node represents a grid of 0’s.isLeaf
: True if the node is leaf node on the tree or False if the node has the four children.
class Node {
public boolean val;
public boolean isLeaf;
public Node topLeft;
public Node topRight;
public Node bottomLeft;
public Node bottomRight;
}
We can construct a Quad-Tree from a two-dimensional area using the following steps:
1's
or all 0's
) set isLeaf
True and set val
to the value of the grid and set the four children to Null and stop.isLeaf
to False and set val
to any value and divide the current grid into four sub-grids as shown in the photo.If you want to know more about the Quad-Tree, you can refer to the wiki.
Quad-Tree format:
The output represents the serialized format of a Quad-Tree using level order traversal, where null
signifies a path terminator where no node exists below.
It is very similar to the serialization of the binary tree. The only difference is that the node is represented as a list [isLeaf, val]
.
If the value of isLeaf
or val
is True we represent it as 1 in the list [isLeaf, val]
and if the value of isLeaf
or val
is False we represent it as 0.
Example 1:
Input: grid = [[0,1],[1,0]]
Output: [[0,1],[1,0],[1,1],[1,1],[1,0]]
Explanation:
The explanation of this example is shown below:
Notice that 0 represnts False and 1 represents True in the photo representing the Quad-Tree.
Example 2:
Input: grid = [[1,1,1,1,0,0,0,0],[1,1,1,1,0,0,0,0],[1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1],[1,1,1,1,0,0,0,0],[1,1,1,1,0,0,0,0],[1,1,1,1,0,0,0,0],[1,1,1,1,0,0,0,0]]
Output: [[0,1],[1,1],[0,1],[1,1],[1,0],null,null,null,null,[1,0],[1,0],[1,1],[1,1]]
Explanation:
All values in the grid are not the same. We divide the grid into four sub-grids.
The topLeft, bottomLeft and bottomRight each has the same value.
The topRight have different values so we divide it into 4 sub-grids where each has the same value.
Explanation is shown in the photo below:
Constraints:
n == grid.length == grid[i].length
n == 2x
where 0 <= x <= 6
from typing import List, Optional
class Node:
def __init__(self, val: bool = False, isLeaf: bool = False,
topLeft: Optional['Node'] = None, topRight: Optional['Node'] = None,
bottomLeft: Optional['Node'] = None, bottomRight: Optional['Node'] = None):
self.val = val
self.isLeaf = isLeaf
self.topLeft = topLeft
self.topRight = topRight
self.bottomLeft = bottomLeft
self.bottomRight = bottomRight
def __str__(self):
if self.isLeaf:
return f"[{int(self.val)},{int(self.isLeaf)}]"
return f"[{int(self.val)},{int(self.isLeaf)}]{self.topLeft}{self.topRight}{self.bottomLeft}{self.bottomRight}"
"""
# Definition for a QuadTree node.
class Node:
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:
def construct(self, grid):
n = len(grid)
# Helper function for recursion
def build(x, y, size):
# Check if all values in this subgrid are same
first_val = grid[x][y]
is_same = True
for i in range(x, x + size):
for j in range(y, y + size):
if grid[i][j] != first_val:
is_same = False
break
if not is_same:
break
# Agar sab same hain -> Leaf Node
if is_same:
return Node(first_val == 1, True)
# Otherwise -> divide into 4 parts
half = size // 2
return Node(
True, # val koi bhi ho, internal node ke liye irrelevant
False, # Not a leaf
topLeft=build(x, y, half),
topRight=build(x, y + half, half),
bottomLeft=build(x + half, y, half),
bottomRight=build(x + half, y + half, half)
)
return build(0, 0, n)