Problem description:

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 height of a rooted tree is the number of edges on the longest downward path between the root and a leaf.

Example 1:

https://assets.leetcode.com/uploads/2020/09/01/e1.jpg

1
2
3
Input: n = 4, edges = [[1,0],[1,2],[1,3]]
Output: [1]
Explanation: As shown, the height of the tree is 1 when the root is the node with label 1 which is the only MHT.

Example 2:

https://assets.leetcode.com/uploads/2020/09/01/e2.jpg

1
2
Input: n = 6, edges = [[3,0],[3,1],[3,2],[3,4],[5,4]]
Output: [3,4]

Solution:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class Solution:
def findMinHeightTrees(self, n: int, edges: List[List[int]]) -> List[int]:
# build graph
# start from leaves, remove those leaves from graph
# keep searching when we have more than 2 nodes remaining in the graph
# it's because for binary tree, we have two scenario, either single node is the MHT
# OR someone's child are MHT, and that could only be two nodes
if n == 1:
return [0]
graph = [set() for _ in range(n)]
for x, y in edges:
graph[x].add(y)
graph[y].add(x)

leaves = [i for i in range(n) if len(graph[i]) == 1]
while n > 2:
n -= len(leaves)
newLeaves = []
for x in leaves:
y = graph[x].pop()
graph[y].remove(x)
if len(graph[y]) == 1:
newLeaves.append(y)
leaves = newLeaves
return leaves

time complexity: $O(n)$
space complexity: $O(n)$
reference:
related problem: