aboutsummaryrefslogtreecommitdiff
path: root/works/solutions/leetcode/cpp/100.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'works/solutions/leetcode/cpp/100.cpp')
-rw-r--r--works/solutions/leetcode/cpp/100.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/works/solutions/leetcode/cpp/100.cpp b/works/solutions/leetcode/cpp/100.cpp
deleted file mode 100644
index 28448d1..0000000
--- a/works/solutions/leetcode/cpp/100.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-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);
- }
- }
-};