【LeetCode】Symmetric Tree
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree is symmetric:
1
/ \
2 2
/ \ / \
3 4 4 3
But the following is not:
1
/ \
2 2
\ \
3 3
Note: Bonus points if you could solve it both recursively and iteratively.
confused what
"{1,#,2,3}"
means? > read more on how binary tree is serialized on OJ. OJ's Binary Tree Serialization:
The serialization of a binary tree follows a level order traversal, where '#' signifies a path terminator where no node exists below.
Here's an example:
1
/ \
2 3
/
4
\
5
The above binary tree is serialized as "{1,2,3,#,#,4,#,#,5}"
code : (build a symmetric tree first, then check if the two trees are the same )
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
bool isSymmetric(TreeNode *root) {
// Note: The Solution object is instantiated only once and is reused by each test case.
if(root == NULL)
return true;
TreeNode *syroot = new TreeNode(root->val);
build(syroot->left,root->right);
build(syroot->right,root->left);
if(isSameTree(syroot,root))
return true;
else return false;
}
void build(TreeNode *&syroot,TreeNode *root)
{
if(root == NULL)
{
syroot = NULL;
return;
}
syroot = new TreeNode(root->val);
build(syroot->left,root->right);
build(syroot->right,root->left);
}
bool isSameTree(TreeNode *p, TreeNode *q)
{
// Start typing your C/C++ solution below
// DO NOT write int main() function
if(p == NULL && q == NULL) return true;
if((p == NULL && q !=NULL) || (p !=NULL && q == NULL)) return false;
if(p->val != q->val) return false;
if(!issame(p->left,q->left)) return false;
if(!issame(p->right,q->right)) return false;
return true;
}
bool issame(TreeNode *p, TreeNode *q)
{
if((p == NULL && q !=NULL) || (p !=NULL && q == NULL)) return false;
if(p == NULL && q == NULL) return true;
if(p->val != q->val) return false;
if(!issame(p->left,q->left)) return false;
if(!issame(p->right,q->right)) return false;
return true;
}
};
아래의 코드는 더욱 간결하여 대칭 트리를 만들지 않아도 된다. 그러나 시간의 복잡도는 그다지 최적화되지 않았다
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
bool isSymmetric(TreeNode *root) {
// Note: The Solution object is instantiated only once and is reused by each test case.
if(root == NULL)
return true;
return isSame(root,root);
}
bool isSame(TreeNode *syroot,TreeNode *root)
{
if(syroot == NULL && root == NULL)
return true;
else if(syroot == NULL || root == NULL)
return false;
if(syroot->val != root->val)
return false;
return isSame(syroot->left,root->right) && isSame(syroot->right,root->left);
}
};
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 문자열 입력으로 모든 유효한 IP 주소 생성(LeetCode 93번 문제)이 문제의 공식 난이도는 Medium으로 좋아요 1296, 반대 505, 통과율 35.4%를 눌렀다.각 항목의 지표로 말하자면 보기에는 약간 규범에 맞는 것 같지만, 실제로도 확실히 그렇다.이 문제의 해법과 의도는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.