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 | 31 |
Tags
- 파이썬알고리즘
- 파이썬 프로그래머스
- 릿코드풀이
- LeetCode
- 잇츠디모
- python sorted
- 릿코드 파이썬
- 알고리즘풀기
- python zip_longest
- 파이썬알고리즘풀기
- python 릿코드
- python xor
- 알고리즘풀이
- 파이썬 알고리즘 풀기
- leetcode풀이
- python 알고리즘
- 파이썬 릿코드
- 상가수익률계산기
- python priority queue
- leetcode 풀기
- 파이썬릿코드
- 파이썬 알고리즘
- binary search
- 릿코드 풀기
- 릿코드풀기
- python Leetcode
- leetcode풀기
- 릿코드
- 코틀린기초
- 파이썬릿코드풀기
Archives
- Today
- Total
소프트웨어에 대한 모든 것
100. Same Tree 본문
반응형
문제)
Given the roots of two binary trees p and q, write a function to check if they are the same or not.
Two binary trees are considered the same if they are structurally identical, and the nodes have the same value.
Example 1:
Input: p = [1,2,3], q = [1,2,3]
Output: true
Example 2:
Input: p = [1,2], q = [1,null,2]
Output: false
Example 3:
Input: p = [1,2,1], q = [1,1,2]
Output: false
Constraints:
- The number of nodes in both trees is in the range [0, 100].
- -104 <= Node.val <= 104
솔루션1)
- preorder 순회
- 순회 시 depth와 left/right 정보를 함께 저장해서 비교. 동일하면 same tree
class Solution:
def isSameTree(self, p: Optional[TreeNode], q: Optional[TreeNode]) -> bool:
DIR_NONE = 0
DIR_LEFT = 1
DIR_RIGHT = 2
def recur(node, depth, direction, vals):
if node is None:
return
vals.append([node.val, depth, direction])
recur(node.left, depth + 1, DIR_LEFT, vals)
recur(node.right, depth + 1, DIR_RIGHT, vals)
a, b = [], []
recur(p, 0, DIR_NONE, a)
recur(q, 0, DIR_NONE, b)
return a == b
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
57. Insert Interval (0) | 2023.01.17 |
---|---|
2233. Maximum Product After K Increments (0) | 2023.01.03 |
520. Detect Capital (0) | 2023.01.02 |
1834. Single-Threaded CPU (0) | 2023.01.02 |
290. Word Pattern (0) | 2023.01.01 |
Comments