当前位置:网站首页>力扣练习——41 对称二叉树
力扣练习——41 对称二叉树
2022-08-02 04:18:00 【qq_43403657】
41 对称二叉树
1.问题描述
给定一个二叉树,检查它是否是镜像对称的。
例如,二叉树 [1,2,2,3,4,4,3] 是对称的。
1
/ \
2 2
/ \ / \
3 4 4 3
二叉树[1,2,2,null,3,3,null,5,-2,-2,5]是对称的。
1
/ \
2 2
\ /
3 3
/ \ / \
5 -2 -2 5
但是下面这个 [1,2,2,null,3,null,3] 则不是镜像对称的:
1
/ \
2 2
\ \
3 3
可使用以下main函数:
#include
#include
#include
#include
using namespace std;
struct TreeNode
{
int val;
TreeNode *left;
TreeNode *right;
TreeNode() : val(0), left(NULL), right(NULL) {}
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
};
TreeNode* inputTree()
{
int n,count=0;
char item[100];
cin>>n;
if (n==0)
return NULL;
cin>>item;
TreeNode* root = new TreeNode(atoi(item));
count++;
queue<TreeNode*> nodeQueue;
nodeQueue.push(root);
while (count<n)
{
TreeNode* node = nodeQueue.front();
nodeQueue.pop();
cin>>item;
count++;
if (strcmp(item,"null")!=0)
{
int leftNumber = atoi(item);
node->left = new TreeNode(leftNumber);
nodeQueue.push(node->left);
}
if (count==n)
break;
cin>>item;
count++;
if (strcmp(item,"null")!=0)
{
int rightNumber = atoi(item);
node->right = new TreeNode(rightNumber);
nodeQueue.push(node->right);
}
}
return root;
}
int main()
{
TreeNode* root;
root=inputTree();
bool res=Solution().isSymmetric(root);
cout<<(res?“true”:“false”);
}
2.输入说明
首先输入结点的数目n(注意,这里的结点包括题中的null空结点)
然后输入n个结点的数据,需要填充为空的结点,输入null。
3.输出说明
输出true或false
4.范例
输入
11
1 2 2 null 3 3 null 5 -2 -2 5
输出
true
5.代码
#include <iostream>
#include <queue>
#include <cstdlib>
#include <cstring>
using namespace std;
struct TreeNode
{
int val;
TreeNode *left;
TreeNode *right;
TreeNode() : val(0), left(NULL), right(NULL) {
}
TreeNode(int x) : val(x), left(NULL), right(NULL) {
}
TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {
}
};
TreeNode* inputTree()
{
int n, count = 0;
char item[100];
cin >> n;
if (n == 0)
return NULL;
cin >> item;
TreeNode* root = new TreeNode(atoi(item));
count++;
queue<TreeNode*> nodeQueue;
nodeQueue.push(root);
while (count < n)
{
TreeNode* node = nodeQueue.front();
nodeQueue.pop();
cin >> item;
count++;
if (strcmp(item, "null") != 0)
{
int leftNumber = atoi(item);
node->left = new TreeNode(leftNumber);
nodeQueue.push(node->left);
}
if (count == n)
break;
cin >> item;
count++;
if (strcmp(item, "null") != 0)
{
int rightNumber = atoi(item);
node->right = new TreeNode(rightNumber);
nodeQueue.push(node->right);
}
}
return root;
}
bool cmp(TreeNode *tree1, TreeNode *tree2)
{
//1.两棵树均为空
if (tree1 == NULL && tree2 == NULL)
return true;
//2.有一棵树非空或者两个根节点值不相等
if (tree1 == NULL || tree2 == NULL || tree1->val != tree2->val)
return false;
//3.比较左子树的右节点和右子树的左节点,左子树的左节点和右子树的右节点
return cmp(tree1->left, tree2->right) && cmp(tree1->right, tree2->left);
}
bool isSymmetric(TreeNode *root)
{
//1.树为空
if (root == NULL)
return true;
//2.判断左右子树
return cmp(root->left, root->right);
}
int main()
{
TreeNode* root;
root = inputTree();
bool res = isSymmetric(root);
cout << (res ? "true" : "false")<<endl;
}
边栏推荐
猜你喜欢

论文速读:Homography Loss for Monocular 3D Object Detection

Excel skills daquan

复制延迟案例(2)-读己之写

falco 【1】入门

ScholarOne Manuscripts submits journal LaTeX file and cannot convert PDF successfully!

A Practical Arrangement of Map GIS Development Matters (Part 1)

Scientific research notes (5) SLAC WiFi Fingerprint+ Step counter fusion positioning

3D object detection dataset

互动投影墙深受展览展示喜爱的原因分析

Arduino框架下ESP32重启原因串口信息输出示例
随机推荐
洛谷P2670扫雷游戏
MySQL存储函数详解
【STM32】 ADC模数转换
力扣 剑指 Offer 56 - I. 数组中数字出现的次数
一次跳出最外层循环
轮询和长轮询的区别
如何评价最近爆红的FastAPI?
吴恩达机器学习系列课程笔记——第九章:神经网络的学习(Neural Networks: Learning)
从事功能测试1年,裸辞1个月,找不到工作的“我”怎么办?
什么是接触电流怎么测?
复制延迟案例(3)-单调读
6个月测试经验,面试跳槽狮子大开口要18K,只会点点点,给我整无语了。。
CODESYS指针型变量编程应用(配方)
热爱和责任
不会多线程还想进 BAT?精选 19 道多线程面试题,有答案边看边学
P1012 [NOIP1998 提高组] 拼数
数据复制系统设计(2)-同步复制与异步复制
gergovia's deal tijie
多主复制下处理写冲突(3)-收敛至一致的状态及自定义冲突解决逻辑
高等数学(第七版)同济大学 总习题三(前10题) 个人解答