第71天。
今天的题目是Find Bottom Left Tree Value:
Given a binary tree, find the leftmost value in the last row of the tree.
Example 1:
Input:
/
1 3
Output:
1
Example 2:
Input:
Output:
7
Note: You may assume the tree (i.e., the given root node) is not NULL.
显然这可以用带高度的深度优先去做:
看起来就不优雅,而且很繁琐的样子,下面是dicuss
中用广度优先去做的:
以及python
版本: