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
- 구현
- Tree
- hash table
- bit manipulation
- Class
- Number Theory
- 파이썬
- Stack
- greedy
- simulation
- 코테
- database
- Counting
- Math
- 자바
- dynamic programming
- Data Structure
- string
- java
- sorting
- Binary Tree
- Binary Search
- Matrix
- geometry
- array
- Method
- SQL
- 코딩테스트
- two pointers
- implement
Archives
- Today
- Total
목록breadth first tree (1)
코린이의 소소한 공부노트
[LeetCode/Easy] 1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree
1. Input 1) final TreeNode original 2) final TreeNode cloned - original을 복사한 트리 3) final TreeNode target - original의 노드 중 하나 2. Output 1) cloned에서 target과 같은 것을 찾아 반환 3. Constraint 1) 트리의 노드 수의 범위는 [1, 10^4]이다. 2) 노드의 값에는 중복이 없다. 3) 타겟 노드는 null이 아니다. 4. Example Input: tree = [7,4,3,null,null,6,19], target = 3 -> Output: 3 설명: 왼쪽 트리가 original, 오른쪽 트리가 cloned, 연두색이 target, 노란색이 반환해야 할 노드이다. 5. Cod..
코딩테스트 풀이/JAVA
2023. 6. 12. 01:36