-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path100.SameTree.cpp
More file actions
29 lines (24 loc) · 1.04 KB
/
100.SameTree.cpp
File metadata and controls
29 lines (24 loc) · 1.04 KB
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
#include<bits/stdc++.h>
using namespace std;
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==NULL && q==NULL) // checking if both of the node of the tree is NULL
return true;
if(p!=NULL && q==NULL) // checking if anyone of the node of the tree is NULL
return false;
if(p==NULL && q!=NULL) // checking if anpne of the node of the tree is NULL
return false;
if(p->val!=q->val) // checkin if they are not null then they are having the same value or not
return false;
return isSameTree(p->right,q->right) && isSameTree(p->left,q->left); // trying the smae for the left and right nodes for both of the trees in a recursive way;
}
};