티스토리 뷰
Problem
Given the root of a binary tree, return the sum of values of its deepest leaves.
Example 1:
Input: root = [1,2,3,4,5,null,6,7,null,null,null,null,8]
Output: 15
Example 2:
Input: root = [6,7,8,2,7,1,3,9,null,1,4,null,null,null,5]
Output: 19
Constraints:
- The number of nodes in the tree is in the range [1, 10^4].
- 1 <= Node.val <= 100
Solution
이진 트리의 루트노드가 주어질 때 가장 깊은 노드의 합을 반환하는 문제입니다.
먼저 트리의 depth를 구한 뒤 재귀호출을 이용해 간단히 풀 수 있습니다.
package io.lcalmsky.leetcode.deepest_leaves_sum;
import io.lcalmsky.leetcode.TreeNode;
public class Solution {
public int deepestLeavesSum(TreeNode root) {
int depth = countDepth(root);
return sum(root, 1, depth);
}
private int countDepth(TreeNode root) {
if (root == null) {
return 0;
}
return 1 + Math.max(countDepth(root.left), countDepth(root.right));
}
private int sum(TreeNode root, int currentDepth, int depth) {
if (root == null) {
return 0;
}
if (currentDepth == depth) {
return root.val;
}
return sum(root.left, currentDepth + 1, depth) + sum(root.right, currentDepth + 1, depth);
}
}
Test
package io.lcalmsky.leetcode.deepest_leaves_sum;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import io.lcalmsky.leetcode.TreeNode;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(TreeNode.of(1, 2, 3, 4, 5, null, 6, 7, null, null, null, null, 8), 15),
() -> test(TreeNode.of(6, 7, 8, 2, 7, 1, 3, 9, null, 1, 4, null, null, null, 5), 19)
);
}
private void test(TreeNode given, int expected) {
// when
Solution solution = new Solution();
int actual = solution.deepestLeavesSum(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
191. Number of 1 Bits (0) | 2022.06.03 |
---|---|
47. Permutations II (0) | 2022.05.28 |
329. Longest Increasing Path in a Matrix (0) | 2022.05.26 |
1091. Shortest Path in Binary Matrix (0) | 2022.05.23 |
743. Network Delay Time (0) | 2022.05.21 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Jackson
- gRPC
- 스프링부트
- QueryDSL
- spring boot app
- 알고리즘
- 함께 자라기 후기
- 스프링 데이터 jpa
- 함께 자라기
- proto3
- Java
- 스프링 부트 애플리케이션
- r
- intellij
- 스프링 부트
- JSON
- spring boot application
- 클린 아키텍처
- Spring Boot
- Spring Data JPA
- 헥사고날 아키텍처
- 스프링 부트 회원 가입
- spring boot jwt
- Spring Boot Tutorial
- 스프링 부트 튜토리얼
- Linux
- JPA
- Spring Boot JPA
- leetcode
- @ManyToOne
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함