博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【leetcode】Same Tree(easy)
阅读量:5918 次
发布时间:2019-06-19

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

Given two binary trees, write a function to check if they are equal or not.

Two binary trees are considered equal if they are structurally identical and the nodes have the same value.

 

思路:太简单!

bool isSameTree(TreeNode *p, TreeNode *q) {        if(p == NULL && q == NULL) return true;        else if(p == NULL || q == NULL) return false;        else if(p->val != q->val) return false;        else        {            return isSameTree(p->left, q->left) && isSameTree(p->right, q->right);        }    }

 

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

你可能感兴趣的文章
WCF大数据量传输解决方案
查看>>
导航栏控制器和标签栏控制器(UINavigationController和UITabBarController)混用
查看>>
[Android]从Launcher开始启动App流程源码分析
查看>>
OC 多态
查看>>
DrectX11学习笔记Texture2D有关
查看>>
安装Spring报错An error occurred while collecting items to be installed
查看>>
详解session
查看>>
ThinkPHP 3.2.3 中设置和使用 Session
查看>>
企业年金
查看>>
循环赛日程表(非递归)
查看>>
HashMap与ConcurrentHashMap的区别<转>
查看>>
前端构建大法 Gulp 系列 (一):为什么需要前端构建
查看>>
Android开发之 Android 的基本组件的概述
查看>>
泛型的使用
查看>>
appium简明教程
查看>>
Tomcat常用的优化技巧
查看>>
史上最详细的Android Studio系列教程四--Gradle基础
查看>>
Android自定义照相机实现(拍照、保存到SD卡,利用Bundle在Acitivity交换数据)
查看>>
iOS 网络错误-分类
查看>>
Wind River Linux 6 Security Profile
查看>>