diff options
author | crupest <crupest@outlook.com> | 2020-10-05 16:10:51 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-10-05 16:10:51 +0800 |
commit | 74dff517666cc468e0c88dd86c1975a74e085af6 (patch) | |
tree | 4c1b0937e821437232fe1ca38c578c27cb3b278a | |
parent | 22eb686d254334cd4136f52345941effc860c4fb (diff) | |
download | solutions-74dff517666cc468e0c88dd86c1975a74e085af6.tar.gz solutions-74dff517666cc468e0c88dd86c1975a74e085af6.tar.bz2 solutions-74dff517666cc468e0c88dd86c1975a74e085af6.zip |
Add problem 100 .
-rw-r--r-- | cpp/100.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/cpp/100.cpp b/cpp/100.cpp new file mode 100644 index 0000000..28448d1 --- /dev/null +++ b/cpp/100.cpp @@ -0,0 +1,29 @@ +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 == nullptr)
+ {
+ if (q == nullptr)
+ return true;
+ return false;
+ }
+ else
+ {
+ if (q == nullptr)
+ return false;
+ return p->val == q->val && isSameTree(p->left, q->left) && isSameTree(p->right, q->right);
+ }
+ }
+};
|