您的位置:首页 > 编程语言 > C语言/C++

[LeetCode练习题-C语言]100. Same Tree

2016-07-26 16:12 423 查看

[LeetCode练习题-C语言]100. Same Tree

题目

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.

我的答案如下:

“`c

/**

* Definition for a binary tree node.

* struct TreeNode {

* int val;

* struct TreeNode *left;

* struct TreeNode *right;

* };

*/

bool isSameTree(struct TreeNode* p, struct TreeNode* q) {

if ((p == NULL && q == NULL) || (p != NULL && q != NULL && (p->val == q->val) && isSameTree(p->left,q->left) && isSameTree(p->right,q->right))){

return true;

}

return false;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  leetcode c语言