코린이의 소소한 공부노트

[LeetCode/Easy] 783. Minimum Distance Between BST Nodes 본문

코딩테스트 풀이/JAVA

[LeetCode/Easy] 783. Minimum Distance Between BST Nodes

무지맘 2023. 5. 31. 12:54

1. Input

1) TreeNode root

 

2. Output

1) root에서 고른 임의의 두 값의 차가 가장 작은 것을 반환

- 차는 0 이상이어야 한다.

 

3. Constraint

1) 노드 수의 범위는 [2, 100]이다.

2) 0 <= Node.val <= 10^5

 

4. Example

Input: root = [4,2,6,1,3] -> Output: 1

Input: root = [1,0,48,null,null,12,49] -> Output: 1

 

5. Code

1) 첫 코드(2023/05/31)

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    public int minDiffInBST(TreeNode root) {
        int min = Integer.MAX_VALUE;
        List<Integer> list = inorder(root);
        for(int i=1 ; i<list.size() ; i++)
            min = Math.min(min, list.get(i)-list.get(i-1));
        return min;
    }

    static List<Integer> inorder(TreeNode root) {
        List<Integer> ans = new ArrayList<>();
        Stack<TreeNode> stack = new Stack<>();
        TreeNode c = root;
        while(!stack.isEmpty() || c!=null) {
            if(c != null) {
                stack.push(c);
                c = c.left;
            } else {
                TreeNode node = stack.pop();
                ans.add(node.val);
                c = node.right;   
            }
        }
        return ans;
    }
}

- 19%, 5%