티스토리 뷰
Problem
Given the root of a binary search tree, rearrange the tree in in-order so that the leftmost node in the tree is now the root of the tree, and every node has no left child and only one right child.
Example 1:
Input: root = [5,3,6,2,4,null,8,1,null,null,null,7,9]
Output: [1,null,2,null,3,null,4,null,5,null,6,null,7,null,8,null,9]
Example 2:
Input: root = [5,1,7]
Output: [1,null,5,null,7]
Constraints:
- The number of nodes in the given tree will be in the range [1, 100].
- 0 <= Node.val <= 1000
Solution
이진 탐색 트리의 root노드가 주어질 때 가장 왼쪽 노드가 root 노드가 되고, 모든 노드가 root 노드의 오른쪽 노드가 되도록 재배열하는 문제입니다.
package io.lcalmsky.leetcode.increasing_order_search_tree;
import io.lcalmsky.leetcode.TreeNode;
public class Solution {
private TreeNode head;
private TreeNode current;
public TreeNode increasingBST(TreeNode root) {
traverse(root);
return head;
}
private void traverse(TreeNode node) {
if (node == null) {
return;
}
traverse(node.left); // (1)
TreeNode n = new TreeNode(node.val);
if (head == null) { // (2)
head = n;
current = n;
} else { // (3)
current.right = n;
current = current.right;
}
traverse(node.right); // (4)
}
}
- 왼쪽 노드를 먼저 탐색합니다.
- head가 존재하지 않으면 현재 노드를 root 노드로 설정하빈다.
- head가 존재하면 기존 노드의 우측 노드로 추가합니다.
- 오른쪽 노드를 탐색하며 같은 동작을 반복합니다.
Test
package io.lcalmsky.leetcode.increasing_order_search_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 testAll() {
assertAll(
() -> test(TreeNode.of(5, 3, 6, 2, 4, null, 8, 1, null, null, null, 7, 9),
TreeNode.of(1, null, 2, null, 3, null, 4, null, 5, null, 6, null, 7, null, 8, null, 9)),
() -> test(TreeNode.of(5, 1, 7), TreeNode.of(1, null, 5, null, 7))
);
}
private void test(TreeNode given, TreeNode expected) {
// when
Solution solution = new Solution();
TreeNode actual = solution.increasingBST(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
705. Design HashSet (0) | 2022.05.04 |
---|---|
410. Split Array Largest Sum (0) | 2022.05.03 |
669. Trim a Binary Search Tree (0) | 2022.04.29 |
81. Search in Rotated Sorted Array II (0) | 2022.04.28 |
700. Search in a Binary Search Tree (0) | 2022.04.27 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- intellij
- spring boot jwt
- 헥사고날 아키텍처
- @ManyToOne
- 스프링 데이터 jpa
- 스프링부트
- proto3
- 스프링 부트 튜토리얼
- 스프링 부트 애플리케이션
- 함께 자라기
- Spring Boot JPA
- 함께 자라기 후기
- 알고리즘
- JPA
- 클린 아키텍처
- gRPC
- spring boot app
- r
- QueryDSL
- Jackson
- 스프링 부트 회원 가입
- Linux
- Java
- Spring Boot Tutorial
- Spring Data JPA
- spring boot application
- Spring Boot
- leetcode
- 스프링 부트
- 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 |
글 보관함