首页 > 其他 > 详细

【6_100】Same Tree

时间:2015-12-12 21:41:47      阅读:117      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!