A tree is an undirected graph in which any two vertices are connected by exactly one path. In other words, any connected graph without simple cycles is a tree.
Given a tree of n nodes labelled from 0 to n - 1, and an array of n - 1 edges where edges[i] = [ai, bi] indicates that there is an undirected edge between the two nodes ai and bi in the tree, you can choose any node of the tree as the root. When you select a node x as the root, the result tree has height h. Among all possible rooted trees, those with minimum height (i.e. min(h)) are called minimum height trees (MHTs).
Return a list of all MHTs' root labels. You can return the answer in any order.
The insight: The roots of MHTs are the "centroids" of the tree - nodes that are most central. We can find them by repeatedly removing leaf nodes (nodes with degree 1) layer by layer, similar to peeling an onion. The last remaining node(s) are the centroids.
Real-world analogy: Imagine placing a water tower to serve houses in a tree-shaped network. The optimal location minimizes the maximum distance to any house - this is the centroid.
n = 4, edges = [[1,0],[1,2],[1,3]][1]n = 6, edges = [[3,0],[3,1],[3,2],[3,4],[5,4]][3,4]n = 1, edges = [][0]1 <= n <= 2 * 10^4edges.length == n - 10 <= ai, bi < nai != biAll the pairs (ai, bi) are distinctThe given input is guaranteed to be a tree and there will be no repeated edgesClick "Run" to execute your code against test cases
Socratic guidance - I'll ask questions, not give answers