Leetcode-100. 相同的树

给定两个二叉树,编写一个函数来检验它们是否相同。

如果两个树在结构上相同,并且节点具有相同的值,则认为它们是相同的。

题目链接:https://leetcode-cn.com/problems/same-tree/

解法1:dfs

采用深度优先搜索,各个节点同时比较

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
* 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 isSameTree(TreeNode* p, TreeNode* q) {
return dfs(p,q);
}
bool dfs(TreeNode *p,TreeNode *q)
{
if(p!=NULL&&q!=NULL)
{
if(p->val==q->val)
{
return dfs(p->left,q->left)&&dfs(p->right,q->right);
}
else return false;
}
else if(p==NULL&&q==NULL)
{
return true;
}
else
{
return false;
}
}
};