LeetCode 썸네일형 리스트형 Symmetric Tree(Tree 거울대칭 판별) 문제) https://leetcode.com/problems/symmetric-tree/ Symmetric Tree - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 해설) 트리가 거울 대칭인지 판별하는 문제 풀이) 큐 하나만을 이용해서 '왼쪽 Root의 경우 왼쪽 자식'을 '오른쪽 Root의 경우 오른쪽 자식'을 매번 비교하게 할 수 있다. /** * Definition for a binary tree node. * struct TreeNode { * int .. 더보기 이전 1 다음