[0513] 找树左下角的值
- GitHub
- http://leetcode.xuezhisd.top/post/340a0fdb.html
- https://leetcode.com/problems/find-bottom-left-tree-value
- https://leetcode-cn.com/problems/find-bottom-left-tree-value
题目描述
给定一个二叉树,在树的最后一行找到最左边的值。
示例 1:
输入: 2 / \ 1 3 输出: 1
示例 2:
输入: 1 / \ 2 3 / / \ 4 5 6 / 7 输出: 7
注意: 您可以假设树(即给定的根节点)不为 NULL。
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |