Skip to content

Commit 6560a90

Browse files
committed
searchBST
- rewrite print_tree and deserialize with inorder traversal - rename compare_tree with is_same_tree - add some testcases
1 parent fb01f79 commit 6560a90

File tree

4 files changed

+138
-26
lines changed

4 files changed

+138
-26
lines changed

include/btree.cc

+76-23
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @brief
99
* @version 0.0.1
1010
*
11-
* Last Modified: 2019-07-29
11+
* Last Modified: 2019-07-30
1212
* Modified By: Jiang Yang ([email protected])
1313
*
1414
*/
@@ -20,33 +20,50 @@ void print_tree(TreeNode *root)
2020
{
2121
using std::cout;
2222
using std::endl;
23-
if (root != nullptr)
23+
using std::queue;
24+
25+
if (root == nullptr)
26+
{
27+
cout << "NULL" << endl;
28+
return;
29+
}
30+
queue<TreeNode *> root_ptrs;
31+
32+
root_ptrs.push(root);
33+
34+
while (!root_ptrs.empty())
2435
{
25-
cout << root->val << " ";
26-
print_tree(root->left);
27-
print_tree(root->right);
36+
TreeNode *temp = root_ptrs.front();
37+
if (temp == nullptr)
38+
cout << "NULL ";
39+
else
40+
cout << temp->val << " ";
41+
if (temp->left != nullptr)
42+
root_ptrs.push(temp->left);
43+
if (temp->right != nullptr)
44+
root_ptrs.push(temp->right);
45+
root_ptrs.pop();
2846
}
29-
else
30-
cout << "NULL ";
47+
cout << endl;
3148
}
3249

33-
bool compare_tree(TreeNode *root1, TreeNode *root2)
50+
bool is_same_tree(TreeNode *root1, TreeNode *root2)
3451
{
3552
if (root1 == nullptr && root2 == nullptr)
3653
return true;
3754
else if (root1 == nullptr || root2 == nullptr)
3855
return false;
3956
else if (root1->val == root2->val)
40-
return (compare_tree(root1->left, root2->left) &&
41-
compare_tree(root1->right, root2->right));
57+
return (is_same_tree(root1->left, root2->left) &&
58+
is_same_tree(root1->right, root2->right));
4259
return false;
4360
}
4461

4562
Tree::Tree(std::initializer_list<int> il) : q(il)
4663
{
4764
if (q.empty())
4865
return;
49-
this->root = deserialize(q);
66+
root = deserialize(q);
5067
}
5168

5269
void delete_root_helper(TreeNode *root)
@@ -71,30 +88,66 @@ Tree::~Tree()
7188

7289
TreeNode *Tree::deserialize(std::queue<int> &in)
7390
{
74-
if (in.empty())
91+
using std::queue;
92+
93+
queue<TreeNode *> root_ptrs;
94+
if (in.empty() || in.front() == NULL)
7595
return nullptr;
76-
if (in.front() == NULL)
96+
TreeNode *temp = new TreeNode(in.front());
97+
TreeNode *ret = temp;
98+
in.pop();
99+
root_ptrs.push(temp);
100+
while (!in.empty())
77101
{
102+
temp = root_ptrs.front();
103+
if (in.front() == NULL)
104+
temp->left = nullptr;
105+
else
106+
temp->left = new TreeNode(in.front());
107+
in.pop();
108+
if (in.empty())
109+
break;
110+
if (in.front() == NULL)
111+
temp->right = nullptr;
112+
else
113+
temp->right = new TreeNode(in.front());
78114
in.pop();
79-
return nullptr;
80-
}
81115

82-
TreeNode *temp = new TreeNode(in.front());
83-
in.pop();
84-
temp->left = deserialize(in);
85-
temp->right = deserialize(in);
116+
if (temp->left != nullptr)
117+
root_ptrs.push(temp->left);
118+
if (temp->right != nullptr)
119+
root_ptrs.push(temp->right);
86120

87-
return temp;
121+
root_ptrs.pop();
122+
}
123+
return ret;
88124
}
89125

126+
// TreeNode *Tree::deserialize(std::queue<int> &in)
127+
// {
128+
// if (in.empty())
129+
// return nullptr;
130+
// if (in.front() == NULL)
131+
// {
132+
// in.pop();
133+
// return nullptr;
134+
// }
135+
136+
// TreeNode *temp = new TreeNode(in.front());
137+
// in.pop();
138+
// temp->left = deserialize(in);
139+
// temp->right = deserialize(in);
140+
141+
// return temp;
142+
// }
143+
90144
void Tree::print()
91145
{
92-
print_tree(this->root);
93-
std::cout << std::endl;
146+
print_tree(root);
94147
}
95148

96149
bool Tree::operator==(const Tree &t2) const
97150
{
98-
return compare_tree(this->root, t2.root);
151+
return is_same_tree(root, t2.root);
99152
}
100153
} // namespace LeetCode

include/btree.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @brief
99
* @version 0.0.1
1010
*
11-
* Last Modified: 2019-07-29
11+
* Last Modified: 2019-07-30
1212
* Modified By: Jiang Yang ([email protected])
1313
*
1414
*/
@@ -33,7 +33,7 @@ struct TreeNode
3333
};
3434

3535
void print_tree(TreeNode *root);
36-
bool compare_tree(TreeNode *root1, TreeNode *root2);
36+
bool is_same_tree(TreeNode *root1, TreeNode *root2);
3737

3838
class Tree
3939
{

src/searchBST.cc

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/**
2+
*
3+
* Copyright (c) 2018 NUAA Jiang Yang
4+
*
5+
* @file
6+
* @author Jiang Yang ([email protected])
7+
* @date 2018-11
8+
* @brief
9+
* @version 0.0.1
10+
*
11+
* Last Modified: 2019-07-30
12+
* Modified By: Jiang Yang ([email protected])
13+
*
14+
*/
15+
#include "headers.h"
16+
17+
class Solution
18+
{
19+
public:
20+
TreeNode *searchBST(TreeNode *root, int val)
21+
{
22+
while (root != nullptr && root->val != val)
23+
{
24+
if (root->val > val)
25+
root = root->left;
26+
else
27+
root = root->right;
28+
}
29+
return root;
30+
}
31+
};
32+
33+
TEST(searchBST, searchBST_1)
34+
{
35+
Solution s;
36+
Tree in = {4, 2, 7, 1, 3};
37+
Tree res = {2, 1, 3};
38+
EXPECT_TRUE(is_same_tree(s.searchBST(in.root, 2), res.root));
39+
}
40+
41+
int main(int argc, char **argv)
42+
{
43+
::testing::InitGoogleTest(&argc, argv);
44+
45+
return RUN_ALL_TESTS();
46+
}

test/test_tree.cc

+14-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @brief
99
* @version 0.0.1
1010
*
11-
* Last Modified: 2019-07-29
11+
* Last Modified: 2019-07-30
1212
* Modified By: Jiang Yang ([email protected])
1313
*
1414
*/
@@ -43,19 +43,32 @@ TEST(test_tree, create)
4343
Tree t4{1, NULL};
4444
}
4545

46+
TEST(test_tree, create_with_NULL)
47+
{
48+
Tree t{NULL};
49+
}
50+
4651
TEST(test_tree, print)
4752
{
4853
Tree t1{1, 2, 3, 4, NULL, NULL, NULL};
4954
t1.print();
5055
}
5156

57+
TEST(test_tree, print_NULL)
58+
{
59+
Tree t1{NULL, NULL, NULL};
60+
t1.print();
61+
}
62+
5263
TEST(test_tree, compare)
5364
{
5465
Tree t1{1, 2, 3, 4, NULL, NULL, NULL};
5566
Tree t2{1, 2, 3, NULL, NULL, NULL, NULL};
5667
Tree t3{1, 2, 3, 4, NULL, NULL, NULL};
68+
Tree t4{1, 2, 3, 4};
5769
EXPECT_FALSE(t1 == t2);
5870
EXPECT_TRUE(t1 == t3);
71+
EXPECT_TRUE(t1 == t4);
5972
}
6073

6174
int main(int argc, char **argv)

0 commit comments

Comments
 (0)