-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy path0101-symmetric-tree.cpp
More file actions
22 lines (21 loc) · 709 Bytes
/
0101-symmetric-tree.cpp
File metadata and controls
22 lines (21 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
bool isMirror(TreeNode *t1, TreeNode *t2) {
if (t1 == NULL && t2 == NULL) return true;
if (t1 == NULL || t2 == NULL) return false;
return (t1->val == t2->val) && isMirror(t1->right, t2->left) &&
isMirror(t1->left, t2->right);
}
public:
bool isSymmetric(TreeNode *root) { return isMirror(root, root); }
};