-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLab06_BiTree.cpp
243 lines (236 loc) · 5.05 KB
/
Lab06_BiTree.cpp
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
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#define MAX_QUEUE_SIZE 200
typedef int ElemType;
//数据类型
//定义二叉树结构
typedef struct BiTNode
{
ElemType data; //数据域struct BiTNode
BiTNode *lChild, *rChild; //左右子树域
} * BiTree;
typedef struct queue
{
BiTNode array[MAX_QUEUE_SIZE];
int front;
int rear;
} SqQueue;
//循环队列基本操作
//初始化队列
SqQueue *Init_CirQueue()
{
SqQueue *Q = (SqQueue *)malloc(sizeof(SqQueue));
if (!Q)
exit(0);
Q->front = Q->rear = 0;
return (Q);
}
//判断队列是否为空
bool IsEmpty_Queue(SqQueue *Q)
{
if (Q->front == Q->rear)
return 1; /* 队列空,返回失败标志 */
return 0;
}
//判断队列是否已满
bool IsFull_Queue(SqQueue *Q)
{
if ((Q->rear + 1) % MAX_QUEUE_SIZE == Q->front) /* 队满*/
return 1;
return 0;
}
//统计队列中元素个数
int Size_Queue(SqQueue *Q)
{
return (Q->rear + MAX_QUEUE_SIZE - Q->front) % MAX_QUEUE_SIZE;
}
//往队列中插入元素
bool Push(SqQueue *Q, BiTNode e)
/* 将数据元素e插入到循环队列Q的队尾 */
{
if (IsFull_Queue(Q)) /* 队满*/
{
printf("Insert: The queue is full.\n");
return 1;
}
Q->array[Q->rear].data = e.data; /* 元素e入队 */
Q->array[Q->rear].lChild = e.lChild;
Q->array[Q->rear].rChild = e.rChild;
Q->rear = (Q->rear + 1) % MAX_QUEUE_SIZE;
/* 队尾指针向前移动 */
return 0; /* 入队成功 */
}
//取队首元素
bool Pop(SqQueue *Q, BiTNode *x)
/* 将循环队列Q的队首元素出队 */
{
if (IsEmpty_Queue(Q)) /* 队空,返回错误标志 */
{
printf("The queue is empty.\n");
return 1; /* 队列空,返回失败标志 */
}
x->data = Q->array[Q->front].data; /* 取栈顶元素 */
x->lChild = Q->array[Q->front].lChild;
x->rChild = Q->array[Q->front].rChild;
Q->front = (Q->front + 1) % MAX_QUEUE_SIZE;
/* 队首指针向前移动 */
return 0;
}
//先序创建二叉树
int CreateBiTree(BiTree *T)
{
ElemType ch;
ElemType temp;
scanf("%d", &ch);
temp = getchar();
if (ch == -1)
*T = NULL;
else
{
*T = (BiTree)malloc(sizeof(BiTNode));
if (!(*T))
exit(-1);
(*T)->data = ch;
printf("输入%d的左子节点:", ch);
CreateBiTree(&(*T)->lChild);
printf("输入%d的右子节点:", ch);
CreateBiTree(&(*T)->rChild);
}
return 1;
}
//先序遍历二叉树
void TraverseBiTree(BiTree T)
{
if (T == NULL)
return;
printf("%d ", T->data);
TraverseBiTree(T->lChild);
TraverseBiTree(T->rChild);
}
//中序遍历二叉树
void InOrderBiTree(BiTree T)
{
//补充以下内容
if (T == NULL)
return;
InOrderBiTree(T->lChild);
printf("%d ", T->data);
InOrderBiTree(T->rChild);
}
//后序遍历二叉树
void PostOrderBiTree(BiTree T)
{
//补充以下内容
if (T == NULL)
return;
PostOrderBiTree(T->lChild);
PostOrderBiTree(T->rChild);
printf("%d ", T->data);
}
//递归求二叉树的深度
int TreeDeep(BiTree T)
{
int deep = -1;
if (T)
{
int leftdeep = TreeDeep(T->lChild);
int rightdeep = TreeDeep(T->rChild);
deep = leftdeep >= rightdeep ? leftdeep + 1 : rightdeep + 1;
}
return deep;
}
//非递归求二叉树的深度
int TreeDeep_norecursion(BiTree T)
{
int deep = -1;
if (T)
{
SqQueue *Q;
Q = Init_CirQueue();
Push(Q, *T);
while (!IsEmpty_Queue(Q))
{
int len = Size_Queue(Q);
deep++;
while (len--)
{
BiTNode temp;
Pop(Q, &temp);
if (temp.lChild)
Push(Q, *temp.lChild);
if (temp.rChild)
Push(Q, *temp.rChild);
}
}
}
return deep;
}
//求二叉树度为1的结点个数
int Degree1count(BiTree T)
{
//补充以下内容
if (T == NULL)
{
return 0;
}
if (T->lChild == NULL && T->rChild != NULL || T->lChild != NULL && T->rChild == NULL)
{
return 1 + Degree1count(T->lChild) + Degree1count(T->rChild);
}
return Degree1count(T->lChild) + Degree1count(T->rChild);
}
//非递归求二叉树度为1的结点个数
int Degree1count_norecursion(BiTree T)
{
int num = 0;
//补充以下内容
if (T)
{
SqQueue *Q = Init_CirQueue();
Push(Q, *T); // Q是以二叉树结点指针为元素的队列
while (!IsEmpty_Queue(Q))
{
BiTNode *p = (BiTNode *)malloc(sizeof(BiTNode));
Pop(Q, p);
if (p->lChild && !p->rChild || !p->lChild && p->rChild)
num++;
if (p->lChild)
Push(Q, *p->lChild); //非空左孩子入队
if (p->rChild)
Push(Q, *p->rChild); //非空右孩子入队
}
}
return num;
}
//主函数
int main(void)
{
BiTree T;
int deepth = -1, num = 0;
printf("请输入第一个结点的值,-1表示没有对应子树:\n");
CreateBiTree(&T);
printf("先序遍历二叉树:\n");
TraverseBiTree(T);
printf("\n");
printf("中序遍历二叉树:\n");
InOrderBiTree(T);
printf("\n");
printf("后序遍历二叉树:\n");
PostOrderBiTree(T);
printf("\n");
deepth = TreeDeep(T);
printf("树的深度为:%d", deepth);
printf("\n");
deepth = TreeDeep_norecursion(T);
printf("树的深度为:%d", deepth);
printf("\n");
num = Degree1count(T);
printf("树的度为1的结点个数为:%d", num);
printf("\n");
num = Degree1count_norecursion(T);
printf("树的度为1的结点个数为:%d", num);
printf("\n");
system("pause");
return 0;
}