티스토리 뷰
Problem
You are given the root of a binary tree where each node has a value 0 or 1. Each root-to-leaf path represents a binary number starting with the most significant bit.
For example, if the path is 0 -> 1 -> 1 -> 0 -> 1, then this could represent 01101 in binary, which is 13.
For all leaves in the tree, consider the numbers represented by the path from the root to that leaf. Return the sum of these numbers.
The test cases are generated so that the answer fits in a 32-bits integer.
Example 1:
Input: root = [1,0,1,0,1,0,1]
Output: 22
Explanation: (100) + (101) + (110) + (111) = 4 + 5 + 6 + 7 = 22
Example 2:
Input: root = [0]
Output: 0
Constraints:
- The number of nodes in the tree is in the range [1, 1000].
- Node.val is 0 or 1.
Solution
0과 1로 이루어진 이진트리가 주어질 때 루트 노드부트 리프 노드까지를 이진수로 변환하여 이진수들의 합을 구하는 문제입니다.
import io.lcalmsky.leetcode.TreeNode;
public class Solution {
public int sumRootToLeaf(TreeNode root) {
if (root == null) {
return 0;
}
return sum(root, 0);
}
private int sum(TreeNode node, int parentValue) {
if (node == null) {
return 0;
}
int current = parentValue * 2 + node.val; // (1)
if (node.left == null && node.right == null) { // (2)
return current;
}
return sum(node.left, current) + sum(node.right, current); // (3)
}
}
- 이진수를 십진수로 변환하기 위해 기존 값에 2를 곱하고 현재 값을 더해줍니다.
- 현재 노드가 리프 노드일 때 현재까지 계산된 값을 반환합니다.
- 현재 노드의 left, right 노드를 탐색하며 반환값을 더해줍니다.
Test
package io.lcalmsky.leetcode.sum_of_root_to_leaf_binary_numbers;
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, 0, 1, 0, 1, 0, 1), 22),
() -> test(TreeNode.of(0), 0)
);
}
private void test(TreeNode given, int expected) {
// when
Solution solution = new Solution();
int actual = solution.sumRootToLeaf(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
452. Minimum Number of Arrows to Burst Balloons (0) | 2022.01.15 |
---|---|
701. Insert into a Binary Search Tree (0) | 2022.01.14 |
67. Add Binary (0) | 2022.01.11 |
1041. Robot Bounded In Circle (0) | 2022.01.10 |
1463. Cherry Pickup II (0) | 2022.01.09 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 스프링 데이터 jpa
- intellij
- 헥사고날 아키텍처
- Spring Boot JPA
- Java
- gRPC
- spring boot application
- Spring Boot Tutorial
- 스프링 부트 튜토리얼
- Linux
- 스프링 부트 애플리케이션
- JSON
- Jackson
- 스프링부트
- 클린 아키텍처
- spring boot app
- 알고리즘
- JPA
- r
- spring boot jwt
- @ManyToOne
- Spring Data JPA
- Spring Boot
- 함께 자라기
- 함께 자라기 후기
- leetcode
- proto3
- QueryDSL
- 스프링 부트 회원 가입
- 스프링 부트
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함