博客
关于我
[Easy] 101. Symmetric Tree
阅读量:352 次
发布时间:2019-03-04

本文共 1179 字,大约阅读时间需要 3 分钟。

101. 对称树检查

问题描述

给定一个二叉树,检查它是否是镜像对称的,即是否关于其中心对称。

示例

  • 对称树:[1,2,2,3,4,4,3]结构:
    1 / \2   2  / \ / \ 3  4 4  3
  • 非对称树:[1,2,2,null,3,null,3]结构:
    1 / \2   2  /   \ null null   /   \  3     3

解决方案

方法思路

使用队列来逐层检查树的对称性。将根节点的左、右子节点分别入队。然后,依次取出队列中的节点,比较它们的值及左右、右子节点的位置,确保左右子树对称。

代码实现

class Solution {    bool isSymmetric(TreeNode* root) {        if (root == NULL) return true;        queue
q1, q2; q1.push(root->left); q2.push(root->right); while (!q1.empty() && !q2.empty()) { TreeNode* left = q1.front(); q1.pop(); TreeNode* right = q2.front(); q2.pop(); if (left == NULL && right == NULL) continue; if (left == NULL || right == NULL) return false; if (left->val != right->val) return false; q1.push(left->left); q1.push(left->right); q2.push(right->right); q2.push(right->left); } return true; }}

代码解释

  • 初始化队列:创建两个队列q1和q2,分别存储根节点的左子树和右子树。
  • 队列处理:从队列中取出节点,比较左右子树的对称性。
  • 检查条件:确保左右子树对称,否则返回false。
  • 继续处理:将左右子节点的子节点分别入队,继续检查。
  • 优化提示

    • 自然语言:避免使用过于正式的技术术语,保持语言流畅。
    • 结构优化:使用小标题和分段,使内容易于阅读。
    • 关键词优化:增加相关关键词,如“对称性检查”、“镜像树”等。

    通过以上优化,内容更具可读性和搜索引擎友好性。

    转载地址:http://pfir.baihongyu.com/

    你可能感兴趣的文章
    NMAP网络扫描工具的安装与使用
    查看>>
    NMF(非负矩阵分解)
    查看>>
    NN&DL4.1 Deep L-layer neural network简介
    查看>>
    NN&DL4.3 Getting your matrix dimensions right
    查看>>
    NN&DL4.8 What does this have to do with the brain?
    查看>>
    No 'Access-Control-Allow-Origin' header is present on the requested resource.
    查看>>
    NO 157 去掉禅道访问地址中的zentao
    查看>>
    No Datastore Session bound to thread, and configuration does not allow creation of non-transactional
    查看>>
    No fallbackFactory instance of type class com.ruoyi---SpringCloud Alibaba_若依微服务框架改造---工作笔记005
    查看>>
    No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalanc
    查看>>
    No mapping found for HTTP request with URI [/...] in DispatcherServlet with name ...的解决方法
    查看>>
    No mapping found for HTTP request with URI [/logout.do] in DispatcherServlet with name 'springmvc'
    查看>>
    No module named 'crispy_forms'等使用pycharm开发
    查看>>
    No module named cv2
    查看>>
    No module named tensorboard.main在安装tensorboardX的时候遇到的问题
    查看>>
    No module named ‘MySQLdb‘错误解决No module named ‘MySQLdb‘错误解决
    查看>>
    No new migrations found. Your system is up-to-date.
    查看>>
    No qualifying bean of type XXX found for dependency XXX.
    查看>>
    No resource identifier found for attribute 'srcCompat' in package的解决办法
    查看>>
    no session found for current thread
    查看>>