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

Leetcode 101 Symmetric Tree 二叉树

时间:2016-03-01 20:45:19      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

判断一棵树是否自对称

可以回忆我们做过的Leetcode 100 Same Tree 二叉树Leetcode 226 Invert Binary Tree 二叉树

先可以将左子树进行Invert Binary Tree,然后用Same Tree比较左右子树

而我的做法是改下Same Tree的函数,改动的是第27行

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 8  * };
 9  */
10 class Solution {
11 public:
12 
13     bool isSymmetric(TreeNode* root) {
14         if(!root) return true;
15         return isSameTree(root->left, root->right);
16         
17     }
18     bool isSameTree(TreeNode* p, TreeNode* q) {
19         if(!p && !q) {
20             return true;
21         }
22         else if(!p||!q){
23             return false;
24         }
25         else{
26             if(p->val != q->val ) return false;
27             else return isSameTree(p->left, q->right) && isSameTree(p->right, q->left);
28         }
29     }
30 };

 

Leetcode 101 Symmetric Tree 二叉树

标签:

原文地址:http://www.cnblogs.com/onlyac/p/5232325.html

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