代码拉取完成,页面将自动刷新
package com.fishercoder.solutions;
import com.fishercoder.common.classes.TreeNode;
import java.util.LinkedList;
import java.util.Queue;
/**
* 1302. Deepest Leaves Sum
*
* Given a binary tree, return the sum of values of its deepest leaves.
*
* Example 1:
* 1
* / \
* 2 3
* / \ \
* 4 5 6
* / \
* 7 8
*
* Input: root = [1,2,3,4,5,null,6,7,null,null,null,null,8]
* Output: 15
*
* Constraints:
* The number of nodes in the tree is between 1 and 10^4.
* The value of nodes is between 1 and 100.
* */
public class _1302 {
public static class Solution1 {
public int deepestLeavesSum(TreeNode root) {
int depth = maxDepth(root);
return bfs(root, depth);
}
private int bfs(TreeNode root, int depth) {
Queue<TreeNode> queue = new LinkedList<>();
queue.offer(root);
int currentLevel = 0;
int sum = 0;
while (!queue.isEmpty()) {
int size = queue.size();
currentLevel++;
for (int i = 0; i < size; i++) {
TreeNode currNode = queue.poll();
if (currentLevel == depth) {
sum += currNode.val;
}
if (currNode.left != null) {
queue.offer(currNode.left);
}
if (currNode.right != null) {
queue.offer(currNode.right);
}
}
}
return sum;
}
private int maxDepth(TreeNode root) {
if (root == null) {
return 0;
}
return Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。