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
- 자바
- Method
- Data Structure
- database
- geometry
- 코딩테스트
- 구현
- Binary Tree
- 파이썬
- hash table
- array
- 코테
- greedy
- SQL
- implement
- string
- Class
- dynamic programming
- bit manipulation
- Math
- Tree
- two pointers
- java
- sorting
- Stack
- Number Theory
- Binary Search
- simulation
- Matrix
- Counting
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 965. Univalued Binary Tree 본문
1. Input
1) TreeNode root
2. Output
1) root의 모든 노드의 값이 같으면 true, 다르면 false를 반환
3. Constraint
1) 노드 수의 범위는 [1, 100]이다.
2) 0 <= Node.val < 100
4. Example
Input: root = [1,1,1,1,1,null,1] -> Output: true
Input: root = [2,2,2,5,2] -> Output: false
5. Code
1) 첫 코드(2023/06/06)
/**
* 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 boolean isUnivalTree(TreeNode root) {
boolean ans = true;
Queue<TreeNode> q = new LinkedList<>();
q.add(root);
int v = root.val;
while(!q.isEmpty()){
TreeNode c = q.remove();
if(c.val!=v) { ans = false; break; }
if(c.left!=null) q.add(c.left);
if(c.right!=null) q.add(c.right);
}
return ans;
}
}
- 100%, 95%
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1002. Find Common Characters (0) | 2023.06.06 |
---|---|
[LeetCode/Easy] 999. Available Captures for Rook (0) | 2023.06.06 |
[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 |
[LeetCode/Easy] 897. Increasing Order Search Tree (0) | 2023.06.05 |