Skip to content

Files

Latest commit

51c09e6 · Feb 27, 2023

History

History

427-ConstructQuadTree

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 27, 2023
Feb 27, 2023

Construct Quad Tree

Problem can be found in here!

Solution: Recursion

Time Complexity: O(n^2), Space Complexity: O(logn) given a n*n matrix grid.