leetcode 之 Same Tree

Posted 山里的小勇子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 之 Same Tree相关的知识,希望对你有一定的参考价值。

1、题目描述

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

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

 

给定两个二叉树,判断两个二叉树是否相同。

 

3、代码

 1  bool isSameTree(TreeNode* p, TreeNode* q) {
 2         
 3         if( p == NULL || q == NULL ) return ( p == q );
 4       
 5         if( p->val == q->val && isSameTree(p->left,q->left)  && isSameTree(p->right,q->right) )
 6             return true;
 7         else
 8             return false;
 9      
10     }

 

以上是关于leetcode 之 Same Tree的主要内容,如果未能解决你的问题,请参考以下文章

[leetcode]100.Same Tree

Same Tree_LeetCode

100. Same Tree(LeetCode)

LeetCode100. Same Tree-相同树

[LeetCode] 100. Same Tree ☆(两个二叉树是否相同)

Leetcode[100]-Same Tree