Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- geometry
- Binary Search
- Math
- Data Structure
- Class
- 자바
- Tree
- greedy
- 파이썬
- dynamic programming
- bit manipulation
- two pointers
- implement
- Stack
- SQL
- Binary Tree
- java
- Method
- string
- Counting
- Matrix
- sorting
- database
- Number Theory
- array
- 코테
- 구현
- 코딩테스트
- simulation
- hash table
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 897. Increasing Order Search Tree 본문
1. Input
1) TreeNode root
2. Output
1) root를 inorder로 읽어온 후 모든 노드가 오른쪽 자식만 갖게 재배열한 결과를 반환
3. Constraint
1) 노드 수의 범위는 [1, 100]이다.
2) 0 <= Node.val <= 1000
4. Example
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]
5. Code
1) 첫 코드(2023/06/05)
/**
* 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 TreeNode increasingBST(TreeNode root) {
Stack<TreeNode> stack = new Stack<>();
ArrayList<Integer> list = new ArrayList<>();
TreeNode c = root;
while(!stack.empty() || c!=null){
if(c!=null){
stack.push(c);
c = c.left;
} else{
c = stack.pop();
list.add(c.val);
c = c.right;
}
}
TreeNode ans = new TreeNode(list.get(0));
c = ans;
for(int i=1 ; i<list.size() ; i++){
c.right = new TreeNode(list.get(i));
c = c.right;
}
return ans;
}
}
- 12%, 67%
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 938. Range Sum of BST (0) | 2023.06.06 |
---|---|
[LeetCode/Easy] 914. X of a Kind in a Deck of Cards (0) | 2023.06.05 |
[백준 온라인 저지] 11727. 2×n 타일링 2 (0) | 2023.06.01 |
[백준 온라인 저지] 11726. 2×n 타일링 (0) | 2023.06.01 |
[LeetCode/Easy] 892. Surface Area of 3D Shapes (0) | 2023.05.31 |