8
8
* @brief
9
9
* @version 0.0.1
10
10
*
11
- * Last Modified: 2019-07-29
11
+ * Last Modified: 2019-07-30
12
12
* Modified By: Jiang Yang ([email protected] )
13
13
*
14
14
*/
@@ -20,33 +20,50 @@ void print_tree(TreeNode *root)
20
20
{
21
21
using std::cout;
22
22
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 ())
24
35
{
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 ();
28
46
}
29
- else
30
- cout << " NULL " ;
47
+ cout << endl;
31
48
}
32
49
33
- bool compare_tree (TreeNode *root1, TreeNode *root2)
50
+ bool is_same_tree (TreeNode *root1, TreeNode *root2)
34
51
{
35
52
if (root1 == nullptr && root2 == nullptr )
36
53
return true ;
37
54
else if (root1 == nullptr || root2 == nullptr )
38
55
return false ;
39
56
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 ));
42
59
return false ;
43
60
}
44
61
45
62
Tree::Tree (std::initializer_list<int > il) : q(il)
46
63
{
47
64
if (q.empty ())
48
65
return ;
49
- this -> root = deserialize (q);
66
+ root = deserialize (q);
50
67
}
51
68
52
69
void delete_root_helper (TreeNode *root)
@@ -71,30 +88,66 @@ Tree::~Tree()
71
88
72
89
TreeNode *Tree::deserialize (std::queue<int > &in)
73
90
{
74
- if (in.empty ())
91
+ using std::queue;
92
+
93
+ queue<TreeNode *> root_ptrs;
94
+ if (in.empty () || in.front () == NULL )
75
95
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 ())
77
101
{
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 ());
78
114
in.pop ();
79
- return nullptr ;
80
- }
81
115
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 );
86
120
87
- return temp;
121
+ root_ptrs.pop ();
122
+ }
123
+ return ret;
88
124
}
89
125
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
+
90
144
void Tree::print ()
91
145
{
92
- print_tree (this ->root );
93
- std::cout << std::endl;
146
+ print_tree (root);
94
147
}
95
148
96
149
bool Tree::operator ==(const Tree &t2) const
97
150
{
98
- return compare_tree ( this -> root , t2.root );
151
+ return is_same_tree ( root, t2.root );
99
152
}
100
153
} // namespace LeetCode
0 commit comments