-
Notifications
You must be signed in to change notification settings - Fork 4
/
Symmetric Tree.txt
48 lines (40 loc) · 1.03 KB
/
Symmetric Tree.txt
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
problem:
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree is symmetric:
1
/ \
2 2
/ \ / \
3 4 4 3
But the following is not:
1
/ \
2 2
\ \
3 3
Note:
Bonus points if you could solve it both recursively and iteratively.
confused what "{1,#,2,3}" means? > read more on how binary tree is serialized on OJ.
-----------------------------------------------------------------------------------
solution:
//递归解决
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
bool isSymmetric_aux(TreeNode *node1, TreeNode *node2)
{
if(node1== NULL && node2 == NULL)
return true;
if(node1 == NULL || node2 == NULL)
return false;
return node1->val == node2->val && isSymmetric_aux(node1->left, node2->right) && isSymmetric_aux(node1->right, node2->left);
}
bool isSymmetric(TreeNode *root)
{
if(root == NULL)
return true;
return isSymmetric_aux(root->left, root->right);
}