Question
Given a binary tree, find its minimum depth.
The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.
Explanation
本题的问题是求根节点到最近的叶节点的距离,叶节点不能是空的。所以考虑的时候,要考虑如果有一边是空的,就只能以另外一边的最短路径长度为准。
比如这个:
返回值为2,而不是1。因为“1”不是叶节点,所以最短路径是从1到2。