-
Notifications
You must be signed in to change notification settings - Fork 0
/
isSameTree.cpp
34 lines (34 loc) · 1001 Bytes
/
isSameTree.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
/**
* 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 {
public:
bool isSameTree(TreeNode* p, TreeNode* q) {
if (!p && !q) return true;
stack<TreeNode*> st1, st2;
st1.push(p);
st2.push(q);
while (!st1.empty() && !st2.empty()) {
TreeNode *n1 = st1.top(), *n2 = st2.top();
st1.pop();
st2.pop();
if (n1 && n2 && n1->val == n2-> val) {
st1.push(n1->right);
st1.push(n1->left);
st2.push(n2->right);
st2.push(n2->left);
}
else if (n1 || n2)
return false;
}
return true;
}
};