티스토리 뷰
Algorithm/LeetCode
[LeetCode - Daily Challenge] 226. Invert Binary Tree
Jaime.Lee 2021. 10. 26. 15:48Problem
Given the root of a binary tree, invert the tree, and return its root.
Example 1:
Input: root = [4,2,7,1,3,6,9]
Output: [4,7,2,9,6,3,1]
Example 2:
Input: root = [2,1,3]
Output: [2,3,1]
Example 3:
Input: root = []
Output: []
Constraints:
- The number of nodes in the tree is in the range [0, 100].
- -100 <= Node.val <= 100
Solution
이진 트리가 주어졌을 때 루트 노드를 기준으로 뒤집는 문제입니다.
재귀호출을 이용해 좌우 노드를 바꿔주면 간단히 해결할 수 있습니다.
package io.lcalmsky.leetcode.invert_binary_tree;
import io.lcalmsky.leetcode.TreeNode;
public class Solution {
public TreeNode invertTree(TreeNode root) {
invert(root);
return root;
}
private void invert(TreeNode root) {
if (root == null) return;
swap(root);
invert(root.left);
invert(root.right);
}
private void swap(TreeNode root) {
TreeNode tempNode = root.left;
root.left = root.right;
root.right = tempNode;
}
}
Test
package io.lcalmsky.leetcode.invert_binary_tree;
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 givenTreeNode_whenInvert_thenCorrect() {
assertAll(
() -> test(TreeNode.of(4, 2, 7, 1, 3, 6, 9), TreeNode.of(4, 7, 2, 9, 6, 3, 1))
);
}
private void test(TreeNode given, TreeNode expected) {
// when
Solution invertBinaryTree = new Solution();
TreeNode actual = invertBinaryTree.invertTree(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode - Daily Challenge] 994. Rotting Oranges (0) | 2021.10.29 |
---|---|
[LeetCode - Daily Challenge] 15. 3Sum (0) | 2021.10.29 |
[LeetCode - Daily Challenge] 222.Count Complete Tree Nodes (0) | 2021.10.25 |
[LeetCode - Daily Challenge] 496. Next Greater Element I (0) | 2021.10.21 |
[LeetCode - Daily Challenge] 993. Cousins in Binary Tree (0) | 2021.10.20 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- spring boot application
- QueryDSL
- Spring Data JPA
- gRPC
- 스프링 부트 애플리케이션
- spring boot jwt
- 스프링부트
- 함께 자라기
- 스프링 부트
- Jackson
- 스프링 데이터 jpa
- 알고리즘
- 헥사고날 아키텍처
- proto3
- JSON
- Spring Boot
- 스프링 부트 튜토리얼
- 클린 아키텍처
- Spring Boot Tutorial
- 스프링 부트 회원 가입
- r
- Spring Boot JPA
- Java
- Linux
- leetcode
- JPA
- 함께 자라기 후기
- spring boot app
- intellij
- @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 |
글 보관함