101.对称二叉树 给定一个二叉树,检查它是否是镜像对称的。
- 用递归的方法
/**
* Definition for a binary tree node.
* struct TreeNode {
*int val;
*TreeNode *left;
*TreeNode *right;
*TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
bool isSymmetric(TreeNode* root) {
return judge(root,root);
}bool judge(TreeNode* root1,TreeNode* root2){
if(root1 == NULL && root2 == NULL) return true;
else if(root1 == NULL || root2 == NULL) return false;
if(root1->val == root2->val) return judge(root1->left,root2->right) && judge(root2->left,root1->right);
return false;
}
};
【从头做leetcode|从头做leetcode之leetcode 101 对称二叉树】通过时间:
文章图片
推荐阅读
- 笔记|C语言数据结构——二叉树的顺序存储和二叉树的遍历
- 数据结构与算法|【算法】力扣第 266场周赛
- leetcode|今天开始记录自己的力扣之路
- leetcode题解|leetcode#106. 从中序与后序遍历序列构造二叉树
- Python|Python 每日一练 二分查找 搜索旋转排序数组 详解
- 【LeetCode】28.实现strstr() (KMP超详细讲解,sunday解法等五种方法,java实现)
- LeetCode-35-搜索插入位置-C语言
- leetcode python28.实现strStr()35. 搜索插入位置
- Leetcode Permutation I & II
- python|leetcode Longest Substring with At Most Two Distinct Characters 滑动窗口法