-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsymmetric_tree.cpp
95 lines (83 loc) · 2.3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree [1,2,2,3,4,4,3] is symmetric:
1
/ \
2 2
/ \ / \
3 4 4 3
But the following [1,2,2,null,3,null,3] is not:
1
/ \
2 2
\ \
3 3
*/
/**
* 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 isSymmetric(TreeNode* root) {
if(root == NULL)
return true;
bool ret = true;
vector<TreeNode *> fringe;
fringe.push_back(root);
int depth = 0;
int next_itr=1;
int fringe_pos = 0;
while(next_itr!=0)
{
int i = next_itr;
int k = fringe_pos + i - 1;
next_itr = 0;
if(i==1)
{
TreeNode *tmp = fringe[fringe_pos];
fringe.push_back(tmp->left);
next_itr++;
fringe.push_back(tmp->right);
next_itr++;
fringe_pos++;
}
else
{
int mid = i/2;
for(int j=0;j<i;j++)
{
TreeNode *tmp = fringe[fringe_pos];
if(tmp!=NULL)
{
fringe.push_back(tmp->left);
next_itr++;
fringe.push_back(tmp->right);
next_itr++;
}
if(j<mid)
{
TreeNode *tmp2 = fringe[k];
if(tmp == NULL && tmp2!=NULL)
return false;
else if(tmp2 == NULL && tmp!=NULL)
return false;
else if(tmp!=NULL && tmp2!=NULL)
{
if(tmp->val != tmp2->val)
return false;
}
k--;
}
fringe_pos++;
}
}
}
return ret;
}
};