-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsymmetric_tree.cpp
54 lines (44 loc) · 1.28 KB
/
symmetric_tree.cpp
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
49
50
51
52
53
54
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
bool helper(TreeNode *left, TreeNode *right){
if(!left && !right) return true;
if(!left || !right) return false;
if(left->val == right->val){
bool outPair = helper(left->left, right->right);
bool inPair = helper(left->right, right->left);
return outPair && inPair;
}
else{
return false;
}
}
bool isSymmetric(TreeNode* root) {
if(root == NULL) return true;
return helper(root->left, root->right);
}
};
/*
def isSymmetric(self, root: TreeNode) -> bool:
if not root:
return True
stack = [(root.left, root.right)]
while stack:
c = stack.pop()
l, r = c[0], c[1]
if not l and not r:
continue
if (l and not r) or (r and not l) or (l.val != r.val):
return False
stack.append((l.right, r.left))
stack.append((l.left, r.right))
return True
*/