码迷,mamicode.com
首页 > 其他好文 > 详细

【6_100】Same Tree

时间:2015-12-12 21:42:21      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

Same Tree

Total Accepted: 97481 Total Submissions: 230752 Difficulty: Easy

 

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.

 

Subscribe to see which companies asked this question

 

这次卡在了递归的return使用上,原来可以一次return两个啊

 

错误写法:

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

  isSameTree(p->right, q->right);
}

正确写法:

else if(p != NULL && q != NULL && p->val == q->val) {
  return (isSameTree(p->left, q->left) && isSameTree(p->right, q->right));
}

 

这次是C语言

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     struct TreeNode *left;
 6  *     struct TreeNode *right;
 7  * };
 8  */
 9 bool isSameTree(struct TreeNode* p, struct TreeNode* q) {
10     if(p == NULL && q == NULL)
11         return true;
12     else if(p != NULL && q != NULL && p->val == q->val) {
13             return (isSameTree(p->left, q->left) && isSameTree(p->right, q->right));
14     }
15     else
16         return false;
17 }

 

【6_100】Same Tree

标签:

原文地址:http://www.cnblogs.com/QingHuan/p/5041868.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!