티스토리 뷰
Problem
You are given the root of a binary search tree (BST) and an integer val.
Find the node in the BST that the node's value equals val and return the subtree rooted with that node. If such a node does not exist, return null.
Example 1:
Input: root = [4,2,7,1,3], val = 2
Output: [2,1,3]
Example 2:
Input: root = [4,2,7,1,3], val = 5
Output: []
Constraints:
The number of nodes in the tree is in the range [1, 5000].
1 <= Node.val <= 107
root is a binary search tree.
1 <= val <= 107
Solution
이진 탐색 트리가 주어지고 타겟 정수가 주어지면 타겟 정수에 해당하는 노드를 반환하는 문제입니다.
노드가 존재하지 않을 경우 null
을 반환합니다.
package io.lcalmsky.leetcode.search_in_a_binary_search_tree;
import io.lcalmsky.leetcode.TreeNode;
public class Solution {
public TreeNode searchBST(TreeNode root, int val) {
if (root == null) { // (1)
return null;
}
if (root.val > val) { // (2)
return searchBST(root.left, val);
}
if (root.val < val) { // (3)
return searchBST(root.right, val);
}
return root; // (4)
}
}
- 노드가 null이면 null을 반환합니다.
- 현재 노드의 값이 타겟 정수의 값보다 크면 left 노드를 기준으로 다시 호출합니다.
- 현재 노드의 값이 타겟 정수의 값보다 작으면 right 노드를 기준으로 다시 호출합니다.
- 현재 노드의 값과 타겟 정수의 값이 같으면 현재 노드를 반환합니다.
Test
package io.lcalmsky.leetcode.search_in_a_binary_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
public void givenTreeNode_whenFindTargetNumber_thenCorrect() {
assertAll(
() -> test(TreeNode.of(4, 2, 7, 1, 3), 2, TreeNode.of(2, 1, 3)),
() -> test(TreeNode.of(4, 2, 7, 1, 3), 5, null)
);
}
private void test(TreeNode given, int k, TreeNode expected) {
Solution solution = new Solution();
TreeNode actual = solution.searchBST(given, k);
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
669. Trim a Binary Search Tree (0) | 2022.04.29 |
---|---|
81. Search in Rotated Sorted Array II (0) | 2022.04.28 |
991. Broken Calculator (0) | 2022.04.26 |
289. Game of Life (0) | 2022.04.25 |
856. Score of Parentheses (0) | 2022.04.24 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Spring Data JPA
- Spring Boot
- 스프링 부트 튜토리얼
- 클린 아키텍처
- Spring Boot JPA
- Linux
- 함께 자라기 후기
- gRPC
- Spring Boot Tutorial
- @ManyToOne
- leetcode
- 스프링 부트 애플리케이션
- r
- Java
- Jackson
- spring boot application
- 스프링 부트
- 함께 자라기
- JSON
- 헥사고날 아키텍처
- spring boot jwt
- JPA
- QueryDSL
- 알고리즘
- intellij
- proto3
- 스프링 데이터 jpa
- 스프링부트
- spring boot app
- 스프링 부트 회원 가입
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함