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
- #크랙미2번
- #고클린
- #크랙미 10번
- #abex크랙미
- #abex
- Spring
- 리버싱
- #크랙미 9번
- #abex크랙미4번
- #크랙미4번
- #크랙미
- java
- springframework
- #크랙미 5번
- #크랙미3번
- #심플즈 크랙미
- #심플즈
- GraphQL
- #보안이슈
- #리버싱
- #파밍
- Easy
- #보안뉴스
- leetcode
- java8
Archives
- Today
- Total
Halo World
[LeetCode] 617. Merge Two Binary Trees 본문
https://leetcode.com/problems/merge-two-binary-trees/
class Solution {
public TreeNode mergeTrees(TreeNode root1, TreeNode root2) {
TreeNode head = root1;
if(root1==null && root2==null) return null;
if(root1==null && root2!=null) return root2;
if(root1!=null && root2==null) return root1;
root1.val+=root2.val;
root1.left = mergeTrees(root1.left, root2.left);
root1.right = mergeTrees(root1.right, root2.right);
return root1;
}
}
'스터디 > 알고리즘 문제풀이' 카테고리의 다른 글
[LeetCode] 696. Count Binary Substrings (0) | 2021.10.04 |
---|---|
[LeetCode] 101. Symmetric Tree (0) | 2021.10.04 |
[LeetCode] 226. Invert Binary Tree (0) | 2021.10.04 |
[LeetCode] 543. Diameter of Binary Tree (0) | 2021.09.30 |
[문제풀이] 백준 14499 주사위 (2) | 2017.10.18 |