内容简介:题目地址:题目描述:
题目地址:
https://leetcode-cn.com/probl...
题目描述:
给定一个二叉树,在树的最后一行找到最左边的值。
示例 1:
输入:
/ \
1 3
输出:
1
示例 2:
输入:
1 / \ 2 3 / / \ 4 5 6 / 7
输出:
7
注意: 您可以假设树(即给定的根节点)不为 NULL。
解答:
我们只需要层次遍历(从左到右)这个二叉树,并且用每层第一个节点的值替换临时变量。
就能得到正确的结果,注意的是树的层次遍历需要用到 队列
java ac代码:
/** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ class Solution { public int findBottomLeftValue(TreeNode root) { ArrayDeque<TreeNode> queue = new ArrayDeque(500); queue.offer(root); int ans = 0; while(!queue.isEmpty()) { int n = queue.size(); ans = queue.peek().val; for(int i = 0;i < n;i++) { TreeNode temp = queue.poll(); if(temp.left != null)queue.offer(temp.left); if(temp.right != null)queue.offer(temp.right); } } return ans; } }
以上所述就是小编给大家介绍的《力扣(LeetCode)513》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。