티스토리 뷰
Problem
Given the root of a binary tree, return the same tree where every subtree (of the given tree) not containing a 1 has been removed.
A subtree of a node node is node plus every node that is a descendant of node.
Example 1:
Input: root = [1,null,0,0,1]
Output: [1,null,0,null,1]
Explanation:
Only the red nodes satisfy the property "every subtree not containing a 1".
The diagram on the right represents the answer.
Example 2:
Input: root = [1,0,1,0,0,0,1]
Output: [1,null,1,null,1]
Example 3:
Input: root = [1,1,0,1,1,0,1,0]
Output: [1,1,0,1,1,null,1]
Constraints:
- The number of nodes in the tree is in the range [1, 200].
- Node.val is either 0 or 1.
Solution
이진 트리의 루트 노드가 주어졌을 때 1을 포함하지 않는 모든 하위 트리를 제거하는 문제입니다.
재귀 호출을 이용해 간단히 풀이할 수 있습니다.
import io.lcalmsky.leetcode.TreeNode;
public class Solution {
public TreeNode pruneTree(TreeNode root) {
if (root == null) {
return null;
}
root.left = pruneTree(root.left);
root.right = pruneTree(root.right);
if (root.left == null && root.right == null && root.val == 0) {
return null;
}
return root;
}
}
자식이 없을 때까지 탐색을 한 뒤 그 노드가 0인 경우 null로 바꿔주면 됩니다.
Test
package io.lcalmsky.leetcode.binary_tree_pruning;
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
public void givenTreeNode_whenPrune_thenCorrect() {
assertAll(
() -> test(TreeNode.of(1, null, 0, 0, 1), TreeNode.of(1, null, 0, null, 1)),
() -> test(TreeNode.of(1, 0, 1, 0, 0, 0, 1), TreeNode.of(1, null, 1, null, 1))
);
}
private void test(TreeNode given, TreeNode expected) {
// when
Solution solution = new Solution();
TreeNode actual = solution.pruneTree(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
94. Binary Tree Inorder Traversal (0) | 2022.09.10 |
---|---|
144. Binary Tree Preorder Traversal (0) | 2022.09.09 |
429. N-ary Tree Level Order Traversal (0) | 2022.09.07 |
415. Add Strings (0) | 2022.09.05 |
967. Numbers With Same Consecutive Differences (0) | 2022.09.04 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Linux
- r
- 헥사고날 아키텍처
- gRPC
- spring boot app
- QueryDSL
- 스프링 부트
- spring boot application
- 클린 아키텍처
- 함께 자라기
- 스프링 데이터 jpa
- @ManyToOne
- intellij
- 함께 자라기 후기
- Spring Boot Tutorial
- leetcode
- 스프링 부트 회원 가입
- 알고리즘
- proto3
- spring boot jwt
- 스프링 부트 애플리케이션
- Spring Boot
- Jackson
- Java
- 스프링 부트 튜토리얼
- 스프링부트
- Spring Boot JPA
- JPA
- Spring Data JPA
- JSON
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함