[Tree] Symmetric Tree
2021. 2. 9. 23:19ㆍ프로그래밍-코딩테스트/LeetCode
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree [1,2,2,3,4,4,3] is symmetric:
트리가 symmetric한지 여부를 살피는 문제
트리는 항상 재귀를 사용한다는 점을 기억하자
'프로그래밍-코딩테스트 > LeetCode' 카테고리의 다른 글
[Array] Partition Labels (0) | 2021.03.26 |
---|---|
[정리] Top 100 Liked Questions - Easy (1) (0) | 2021.03.10 |
[Stack] Min Stack (0) | 2021.02.09 |
[Linked List] Intersection of Two Linked Lists (0) | 2021.02.09 |
[Linked List] Linked List Cycle (0) | 2021.02.09 |