-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathSymmetric_Tree.cpp
72 lines (63 loc) · 2.11 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
// using level order traversal
class Solution {
public:
bool isPalindrome(vector<int> &container) {
for(int i = 0, j = container.size() - 1; i < j; ++i, --j) {
if(container[i] != container[j])
return false;
}
return true;
}
bool isSymmetric(TreeNode *root) {
if(root == NULL) return true;
queue < pair<TreeNode*, int> > q;
q.push(make_pair(root, 1));
int prev_level = 0, curr_level;
pair<TreeNode*, int> node;
TreeNode *dummy = new TreeNode(-(1 << 30)), *curr;
vector <int> container;
while(!q.empty()) {
node = q.front(), q.pop();
curr = node.first;
curr_level = node.second;
if(curr_level > prev_level) {
if(!isPalindrome(container))
return false;
container.clear();
}
container.push_back(curr->val);
prev_level = curr_level;
if(curr->val == dummy->val) continue;
if(curr->left) q.push(make_pair(curr->left, curr_level + 1));
else q.push(make_pair(dummy, curr_level + 1));
if(curr->right) q.push(make_pair(curr->right, curr_level + 1));
else q.push(make_pair(dummy, curr_level + 1));
}
return true;
}
};
// using recursion
class Solution {
bool isSymmetric(TreeNode* root1, TreeNode* root2) {
if(!root1 and !root2) {
return true;
}
if(!root1 or !root2) {
return false;
}
return root1->val == root2->val and isSymmetric(root1->left, root2->right) and isSymmetric(root1->right, root2->left);
}
public:
bool isSymmetric(TreeNode* root) {
return isSymmetric(root, root);
}
};