Problem Description
Given a tree of n nodes labelled from 0 to n - 1, and an array of n - 1 edges, return a list of all Minimum Height Trees (MHTs) root labels. A tree is a connected graph without cycles, and the height of a tree is defined as the number of edges on the longest downward path between the root and a leaf.
Key Insights
- A tree with n nodes has exactly n - 1 edges.
- Minimum Height Trees can be found by identifying the centroids of the tree, which minimize the height when chosen as roots.
- The centroids can be efficiently determined using a multi-phase pruning technique where leaves are removed iteratively until the remaining nodes are the centroids.
- The height of the tree is minimized when the root is positioned centrally in relation to all other nodes.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
The solution uses a Breadth-First Search (BFS) approach to find the Minimum Height Trees. The algorithm works as follows:
- Construct an adjacency list from the given edges to represent the tree.
- Identify all the leaf nodes (nodes with only one edge).
- Iteratively remove these leaves from the tree until only one or two nodes remain.
- The remaining nodes are the roots of the Minimum Height Trees.
This approach ensures that we efficiently find the centroids of the tree, which result in the minimum height when selected as roots.