找树左下角的值
给定一个二叉树的 根节点 root
,请找出该二叉树的 最底层 最左边 节点的值。
假设二叉树中至少有一个节点。
示例 1:
输入: root = [2,1,3]
输出: 1
示例 2:
输入: [1,2,3,4,null,5,6,null,null,7]
输出: 7
【思路】
迭代法:层序遍历只需要记录最后一行第一个节点的数值就可以了。
public int findBottomLeftValue(TreeNode root) {
// 思路:层序遍历每一层只取出第一个元素然后赋值给res即可.
Queue<TreeNode> queue = new LinkedList<>();
queue.offer(root);
int res = 0;
while (!queue.isEmpty()) {
int size = queue.size();
for (int i = 0; i < size; i++) {
TreeNode poll = queue.poll();
if (i == 0) {
res = poll.val;
}
if (poll.left != null) {
queue.offer(poll.left);
}
if (poll.right != null) {
queue.offer(poll.right);
}
}
}
return res;
}
标签:null,19,找树,queue,int,res,左下角,poll,root
From: https://www.cnblogs.com/codingbao/p/17889146.html