0%

Binary Tree

今天写二叉树快写吐了,要写递归和非递归的版本
不是很明白为什么二叉树要非递归
老师上课说,递归其实时间特别长
好吧,反正上课一顿骚操作愣是看懵了
最后是参考的腾讯云上的这篇文章看了个大概

最终代码如下

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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
#include <iostream>
#include <queue>
#include <stack>
using namespace std;

typedef int DataType;

class BinaryTree
{
public:
DataType data;
BinaryTree *leftChild;
BinaryTree *rightChild;
BinaryTree()
{
leftChild = nullptr;
rightChild = nullptr;
}
BinaryTree(DataType e)
{
data = e;
leftChild = nullptr;
rightChild = nullptr;
}
};

class BT
{
private:
BinaryTree *root;
public:
BT()
{
root = nullptr;
create();

// pre visit
cout << "===============================" << endl;
preOrderNonRecursive();
cout << "preOrderRecursive" << endl;
preOrderRecursive(root);

// index visit
cout << "===============================" << endl;
indexOrderNonRecursive();
cout << "indexOrderRecursive" << endl;
indexOrderRecursive(root);

// post visit
cout << "===============================" << endl;
postOrderNonRecursive();
cout << "postOrderRecursive" << endl;
postOrderRecursive(root);

// bf
cout << "===============================" << endl;
cout << "bf" << endl;
bf();
}
BinaryTree* create();

void preOrderNonRecursive();
void preOrderRecursive(BinaryTree *p);
void indexOrderNonRecursive();
void indexOrderRecursive(BinaryTree *p);
void postOrderNonRecursive();
void postOrderRecursive(BinaryTree *p);

void bf();
};

BinaryTree* BT::create()
{
int data;
cout << "data: ";
cin >> data;
if (data < 0)
{
cout << "minux error" << endl;
return nullptr;
}
if (!root)
{
root = new BinaryTree(data);
root->leftChild = create();
root->rightChild = create();
return root;
}
else
{
BinaryTree *p = new BinaryTree(data);
p->leftChild = create();
p->rightChild = create();
return p;
}
}

void BT::preOrderNonRecursive()
{
cout << "preOrderNonRecursive" << endl;
if (!root)
{
cout << "empty tree" << endl;
return;
}
stack<BinaryTree *> preStack;
preStack.push(root);
BinaryTree *cur = nullptr;
while (!preStack.empty())
{
cur = preStack.top();
cout << cur->data << endl;
preStack.pop();
if (cur->rightChild) // left output first so push right first
{
preStack.push(cur->rightChild);
}
if (cur->leftChild)
{
preStack.push(cur->leftChild);
}
}
}

void BT::preOrderRecursive(BinaryTree *p)
{
if (!root)
{
cout << "empty tree" << endl;
}
else if (!p)
{
return;
}
else
{
cout << p->data << endl;
preOrderRecursive(p->leftChild);
preOrderRecursive(p->rightChild);
}
}

void BT::indexOrderNonRecursive()
{
cout << "indexOrderNonRecursive" << endl;
if (!root)
{
cout << "empty tree" << endl;
return;
}
stack<BinaryTree *> indexStack;
BinaryTree *cur = root;
while (!indexStack.empty() || cur)
{
while (cur)
{
indexStack.push(cur);
cur = cur->leftChild;
}
cur = indexStack.top();
cout << cur->data << endl;
indexStack.pop();
cur = cur->rightChild;
}
}

void BT::indexOrderRecursive(BinaryTree *p)
{
if (!root)
{
cout << "empty tree" << endl;
}
else if (!p)
{
return;
}
else
{
indexOrderRecursive(p->leftChild);
cout << p->data << endl;
indexOrderRecursive(p->rightChild);
}
}

void BT::postOrderNonRecursive()
{
cout << "postOrderNonRecursive" << endl;
if (!root)
{
cout << "empty tree" << endl;
return;
}
stack<BinaryTree *> postStack;
BinaryTree *cur, *pre = nullptr;
postStack.push(root);
while (!postStack.empty())
{
cur = postStack.top();
if ((!cur->leftChild && !cur->rightChild) || (pre && (pre == cur->leftChild || pre == cur->rightChild)))
{
cout << cur->data << endl;
postStack.pop();
pre = cur;
}
else
{
if (cur->rightChild)
postStack.push(cur->rightChild);
if (cur->leftChild)
postStack.push(cur->leftChild);
}
}
}

void BT::postOrderRecursive(BinaryTree *p)
{
if (!root)
{
cout << "empty tree" << endl;
}
else if (!p)
{
return;
}
else
{
postOrderRecursive(p->leftChild);
postOrderRecursive(p->rightChild);
cout << p->data << endl;
}
}

void BT::bf()
{
if (!root)
{
cout << "empty tree" << endl;
return;
}
queue<BinaryTree *> bfQ;
bfQ.push(root);
while (!bfQ.empty())
{
BinaryTree *cur = bfQ.front();
cout << cur->data << endl;
bfQ.pop();
if (cur->leftChild)
bfQ.push(cur->leftChild);
if (cur->rightChild)
bfQ.push(cur->rightChild);
}
}

int main(int argc, const char *argv[])
{
BT bt;

return 0;
}

Welcome to my other publishing channels