Published onJune 13, 2024Minimum Height TreespythonalgorithmtreeGiven a tree of n nodes, return a list of all MHT(Minimum Height Tree)s' root labels.'
Published onJune 12, 2024Balanced Binary TreepythonalgorithmtreeDFSbinary-treeGiven a binary tree, determine if it is height-balanced.
Published onJune 11, 2024Serialize & Deserialize Binary TreepythonalgorithmtreeBFSbinary-treeDesign an algorithm to serialize and deserialize a binary tree.
Published onJune 10, 2024Merge Two Binary TreespythonalgorithmtreeDFSYou are given two binary trees root1 and root2. Return the merged tree.
Published onJune 9, 2024Inverse Binary TreepythonalgorithmtreeDFSBFSGiven the root of a binary tree, invert the tree, and return its root.