LeetCode-对称二叉树
Posted Garrett_Wale
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode-对称二叉树相关的知识,希望对你有一定的参考价值。
对称二叉树
symmetric tree
- 和上一题的镜像树很相似,这里是判断是否是对称树,需要利用镜像树的性质。
- 对称树满足两个性质:
2.1. 两个子树的结点值需要相同。
2.2. 第一颗树的左子树和第二课树的右子树也满足这种对称树的关系(结点值相同)。 - 使用递归求解较容易想到,还可以使用迭代法使用队列求解。
/** 对称二叉树:
* 判断一颗二叉树是否是对称二叉树
**/
#include<iostream>
#include<cstring>
#include<string>
#include<algorithm>
#include<cstdio>
#include<queue>
#include<vector>
using namespace std;
// Definition for a binary tree node.
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
/**
1
/ 2 2
3 3
1
/ 2 2
/ / 3 4 4 3
**/
class Solution {
public:
bool isMirro(TreeNode* tree1,TreeNode* tree2){
if(tree1==NULL&&tree2==NULL){
return true;
}
if(!tree1||!tree2)
return false;
if(tree1->val==tree2->val){
return isMirro(tree1->left,tree2->right)&&isMirro(tree1->right,tree2->left);
}else{
return false;
}
}
bool isSymmetric(TreeNode* root) {
if(root)
return isMirro(root->left,root->right);
else return true;
}
};
int main(){
TreeNode* t1=new TreeNode(1);
TreeNode* t2=new TreeNode(2);
TreeNode* t3=new TreeNode(2);
TreeNode* t4=new TreeNode(3);
TreeNode* t5=new TreeNode(4);
TreeNode* t6=new TreeNode(4);
TreeNode* t7=new TreeNode(3);
t2->left=t4;t2->right=t5;
t3->left=t6;t3->right=t7;
t1->left=t2;t1->right=t3;
Solution solution;
solution.isSymmetric(t1);
system("pause");
return 0;
}
以上是关于LeetCode-对称二叉树的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 101.对称二叉树 - JavaScript
⭐算法入门⭐《二叉树》简单03 —— LeetCode 101. 对称二叉树