对称二叉树
文章来源地址https://www.toymoban.com/news/detail-819855.html
代码
bool isSametree(struct TreeNode*root1,struct TreeNode*root2)
{
if(root1==NULL&&root2==NULL)
return true;
if(root1==NULL||root2==NULL)
return false;
if(root1->val!=root2->val)
return false;
return isSametree(root1->left,root2->right)
&&isSametree(root1->right,root2->left);
}
bool isSymmetric(struct TreeNode* root) {
return isSametree(root->left,root->right);
}
文章来源:https://www.toymoban.com/news/detail-819855.html
到了这里,关于【Leetcode 101.对称二叉树】【C语言】判断一颗二叉树是否是对称二叉树(相同的树的变形)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!