1 二叉树的定义
二叉树的图长这样:
二叉树是每个结点最多有两个子树的树结构,常被用于实现二叉查找树和二叉堆。二叉树是链式存储结构,用的是二叉链,本质上是链表。二叉树通常以结构体的形式定义,如下,结构体内容包括三部分:本节点所存储的值、左孩子节点的指针、右孩子节点的指针。
1 2 3 4 5
| struct TreeNode { int data; struct TreeNode* lchild; struct TreeNode* rchild; };
|
当然,我们也可以为我们的的树节点结构体重新定义一下名字,使用 C 语言中的 typedef 方法就可以了。
1 2 3 4 5
| struct TreeNode { int data; struct TreeNode* lchild; struct TreeNode* rchild; } BiNode, *BiTree;
|
2 二叉树的建立
二叉树的操作通常使用递归方法,二叉树的操作可以分为两类,一类是需要改变二叉树的结构的,比如二叉树的创建、节点删除等等,这类操作,传入的二叉树的节点参数为二叉树指针的地址,这种参入传入,便于更改二叉树结构体的指针(即地址)。
如下是二叉数创建的函数,这里我们规定,节点值必须为大于 0 的数值,如果不是大于 0 的数,则表示结束继续往下创建子节点的操作。然后我们使用递归的方法以此创建左子树和右子树。
比如说,建立这个二叉树:
1 2 3 4 5
| 5 / \ 3 8 / / \ 2 6 9
|
首先根据这个二叉树,我们先模拟一下:
先序输入:5 3 2 0 0 0 8 6 0 0 9 0 0
先序遍历输出:5 3 2 8 6 9
中序遍历输出:2 3 5 6 8 9
后序遍历输出:2 3 6 9 8 5
层次遍历输出:5 3 8 2 6 9
下面通过先序的方式建立二叉树:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| BiTree CreateTree() { int data; scanf("%d", &data); BiTree root;
if (data <= 0) { return NULL; } else { root = (BiTree)malloc(sizeof(BiNode)); root->data = data; root->lchild = CreateTree(); root->rchild = CreateTree(); } return root; }
|
测试使用:
1 2 3 4 5 6 7 8 9
| int main() { BiTree root = NULL; root = CreateTree(); PreOrderTraverse(root); return 0; }
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| void CreateTree(BiTree* root) { int data; scanf("%d", &data); if (data <= 0) { *root = NULL; } else { (*root) = (BiTree)malloc(sizeof(BiNode)); (*root)->data = data; CreateTree(&((*root)->lchild)); CreateTree(&((*root)->rchild)); } }
|
测试使用:
1 2 3 4 5 6 7 8 9
| int main() { BiTree root; CreateTree(&root); PreOrderTraverse(root); return 0; }
|
如果没有要求的话,我比较倾向于第一种!
3 二叉树的遍历
3.1 先序遍历
先序遍历的思路:
先序遍历的过程是首先访问根结点,然后先序遍历根的左子树,最后先序遍历根的右子树。对于根的左子树和右子树,遍历的过程相同。
方案一:递归
1 2 3 4 5 6 7 8
| void PreOrderTraverse(BiTree root) { if (root) { printf("%d ", root->data); PreOrderTraverse(root->lchild); PreOrderTraverse(root->rchild); } }
|
方案二:非递归
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
| void PreOrderTraverseNonRec(BiTree root) { BiTree stack[MaxSize]; BiTree p; int top = -1; if (root != NULL) { top++; stack[top] = root; while (top > -1) { p = stack[top]; top--; printf("%d ", p->data); if (p->rchild != NULL) { top++; stack[top] = p->rchild; } if (p->lchild != NULL) { top++; stack[top] = p->lchild; } } } }
|
3.2 中序遍历
中序遍历的思路
中序遍历的过程是首先中序遍历左子树,然后访问根结点,最后中序遍历根的右子树。对于根的左子树和右子树,遍历的过程相同。
方案一:递归
1 2 3 4 5 6 7 8
| void InOrderTraverse(BiTree root) { if (root) { InOrderTraverse(root->lchild); printf("%d ", root->data); InOrderTraverse(root->rchild); } }
|
方案二:非递归
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
| void InOrderTraverseNonRec(BiTree root) { BiTree stack[MaxSize]; BiTree p; int top = -1; if (root != NULL) { p = root; while (top > -1 || p != NULL) { while (p != NULL) { top++; stack[top] = p; p = p->lchild; } if (top > -1) { p = stack[top]; top--; printf("%d ", p->data); p = p->rchild; } } } }
|
3.3 后序遍历
后序遍历的思路
后序遍历的过程是首先后序遍历左子树,然后后序遍历根的右子树,最后访问根结点。
方案一:递归
1 2 3 4 5 6 7 8
| void PostOrderTraverse(BiTree root) { if (root) { PostOrderTraverse(root->lchild); PostOrderTraverse(root->rchild); printf("%d ", root->data); } }
|
方案二:非递归
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
| void PostOrderTraverseNonRec(BiTree root) { BiTree stack[MaxSize]; BiTree p; int top = -1; int sign; if (root != NULL) { do { while (root != NULL) { top++; stack[top] = root; root = root->lchild; } p = NULL; sign = 1; while (top != -1 && sign) { root = stack[top]; if (root->rchild == p) { printf("%d ", root->data); top--; p = root; } else { root = root->rchild; sign = 0; } } } while (top != -1); } }
|
3.4 层次遍历
层次遍历的思路:
思路:在进行层次遍历时,对一层结点访问完后再按照它们的访问次序对各个结点的左孩子和右孩子顺序访问,这样一层一层地进行,先遇到的结点先访问,这棵二叉树的层次遍历序列为 5 3 8 2 6 9,先上到下,先左到右。实现层次遍历用队列比较方便,因为是先进先出(FIFO)。首先把 5 入队,然后再输出队首元素,并且把队首元素的左结点和右结点入队(如果有的话),以此类推,输出的序列就是层次遍历啦
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| void LevelOrderTraverseNonRec(BiTree root) { BiTree p; Push(root); while (!empty()) { p = Pop(); printf("%d ", p->data); if (p->lchild) { Push(p->lchild); } if (p->rchild) { Push(p->rchild); } } }
|
附队列部分代码:
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
| typedef struct queue { struct TreeNode* numQueue[MaxSize]; int front; int rear; } Queue;
Queue queue;
void initQueue() { queue.front = 0; queue.rear = 0; }
void Push(BiTree root) { queue.numQueue[++queue.rear] = root; }
BiTree Pop() { return queue.numQueue[++queue.front]; }
int empty() { return queue.rear == queue.front; }
|
4 求二叉树的最大深度
一棵树的最大深度,左子树和右子树的最大深度 + 1 即可.
1 2 3 4 5 6 7 8 9 10 11 12 13
| int maxDepth(BiTree root) { if (root) { int maxLeft = maxDepth(root->lchild); int maxRight = maxDepth(root->rchild); if (maxLeft > maxRight) { return maxLeft + 1; } else { return maxRight + 1; } } return 0; }
|
5 求二叉树的高度
1 2 3 4 5 6 7 8 9
| int BiTreeHeight(BiTree root) { if (root) { int leftHeight = BiTreeHeight(root->lchild); int rightHeight = BiTreeHeight(root->rchild); return (leftHeight > rightHeight) ? (leftHeight + 1) : (rightHeight + 1); } return 0; }
|
6 求二叉树叶子节点的个数
一个节点的度就是一个节点的分支数,二叉树中的节点按照度来分类的话,分为三类,度分别为 0、1、2 的节点,我们将其数量表示为 n0、n1、n2,且我们将一棵树的总结点数量用 N 来表示。那么一个数的叶子节点的数量即为 n0,且有 N = n0 + n1 + n2。
如果我们按照一棵树的子节点数来计算一棵树的总结点数,那么一棵二叉树树的总结点数 N = 2 * n2 + n1 + 1,最后一个 1 表示树的根节点。我们将关于 N 的两个等式合并,则有结论:n0 = n2 + 1。
1 2 3 4 5 6 7 8 9 10 11
| int LeafNodeNum(BiTree root) { if (root == NULL) { return 0; } if (root->lchild == NULL && root->rchild == NULL) { return 1; } else { return LeafNodeNum(root->lchild) + LeafNodeNum(root->rchild); } }
|
7 求第 k 层节点的个数
1 2 3 4 5 6 7 8 9 10
| int LevelNodeNum(BiTree root, int k) { if (root == NULL || k < 1) { return 0; } if (k == 1) { return 1; } return LevelNodeNum(root->lchild, k - 1) + LevelNodeNum(root->rchild, k - 1); }
|
8 求二叉树总节点个数
1 2 3 4 5 6 7 8 9 10 11
| int CountNode(BiTree root) { if (root) { if ((root->lchild == NULL) && (root->rchild == NULL)) { return 1; } else { return CountNode(root->lchild) + CountNode(root->rchild) + 1; } } return 0; }
|
9 查找元素为 x 的节点
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| BiTree SearchNode(BiTree root, int x) { if (root) { if (root->data == x) { return root; } else { BiTree p; p = SearchNode(root->lchild, x); if (!p) { p = SearchNode(root->rchild, x); } return p; } } return NULL; }
|
10 二叉树的操作完整代码
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 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
| #include <stdio.h> #include <stdlib.h> #define MaxSize 100
typedef struct TreeNode { int data; struct TreeNode* lchild; struct TreeNode* rchild; } BiNode, *BiTree;
typedef struct queue { struct TreeNode* numQueue[MaxSize]; int front; int rear; } Queue;
Queue queue;
void initQueue() { queue.front = 0; queue.rear = 0; }
void Push(BiTree root) { queue.numQueue[++queue.rear] = root; }
BiTree Pop() { return queue.numQueue[++queue.front]; }
int empty() { return queue.rear == queue.front; }
BiTree CreateTree() { int data; scanf("%d", &data); BiTree root;
if (data <= 0) { return NULL; } else { root = (BiTree)malloc(sizeof(BiNode)); root->data = data; root->lchild = CreateTree(); root->rchild = CreateTree(); } return root; }
void PreOrderTraverse(BiTree root) { if (root) { printf("%d ", root->data); PreOrderTraverse(root->lchild); PreOrderTraverse(root->rchild); } }
void PreOrderTraverseNonRec(BiTree root) { BiTree stack[MaxSize]; BiTree p; int top = -1; if (root != NULL) { top++; stack[top] = root; while (top > -1) { p = stack[top]; top--; printf("%d ", p->data); if (p->rchild != NULL) { top++; stack[top] = p->rchild; } if (p->lchild != NULL) { top++; stack[top] = p->lchild; } } } }
void InOrderTraverse(BiTree root) { if (root) { InOrderTraverse(root->lchild); printf("%d ", root->data); InOrderTraverse(root->rchild); } }
void InOrderTraverseNonRec(BiTree root) { BiTree stack[MaxSize]; BiTree p; int top = -1; if (root != NULL) { p = root; while (top > -1 || p != NULL) { while (p != NULL) { top++; stack[top] = p; p = p->lchild; } if (top > -1) { p = stack[top]; top--; printf("%d ", p->data); p = p->rchild; } } } }
void PostOrderTraverse(BiTree root) { if (root) { PostOrderTraverse(root->lchild); PostOrderTraverse(root->rchild); printf("%d ", root->data); } }
void PostOrderTraverseNonRec(BiTree root) { BiTree stack[MaxSize]; BiTree p; int top = -1; int sign; if (root != NULL) { do { while (root != NULL) { top++; stack[top] = root; root = root->lchild; } p = NULL; sign = 1; while (top != -1 && sign) { root = stack[top]; if (root->rchild == p) { printf("%d ", root->data); top--; p = root; } else { root = root->rchild; sign = 0; } } } while (top != -1); } }
void LevelOrderTraverseNonRec(BiTree root) { BiTree p; Push(root); while (!empty()) { p = Pop(); printf("%d ", p->data); if (p->lchild) { Push(p->lchild); } if (p->rchild) { Push(p->rchild); } } }
int maxDepth(BiTree root) { if (root) { int maxLeft = maxDepth(root->lchild); int maxRight = maxDepth(root->rchild); if (maxLeft > maxRight) { return maxLeft + 1; } else { return maxRight + 1; } } return 0; }
int BiTreeHeight(BiTree root) { if (root) { int leftHeight = BiTreeHeight(root->lchild); int rightHeight = BiTreeHeight(root->rchild); return (leftHeight > rightHeight) ? (leftHeight + 1) : (rightHeight + 1); } return 0; }
int LeafNodeNum(BiTree root) { if (root == NULL) { return 0; } if (root->lchild == NULL && root->rchild == NULL) { return 1; } else { return LeafNodeNum(root->lchild) + LeafNodeNum(root->rchild); } }
int LevelNodeNum(BiTree root, int k) { if (root == NULL || k < 1) { return 0; } if (k == 1) { return 1; } return LevelNodeNum(root->lchild, k - 1) + LevelNodeNum(root->rchild, k - 1); }
int CountNode(BiTree root) { if (root) { if ((root->lchild == NULL) && (root->rchild == NULL)) { return 1; } else { return CountNode(root->lchild) + CountNode(root->rchild) + 1; } } return 0; }
BiTree SearchNode(BiTree root, int x) { if (root) { if (root->data == x) { return root; } else { BiTree p; p = SearchNode(root->lchild, x); if (!p) { p = SearchNode(root->rchild, x); } return p; } } return NULL; }
int main() { BiTree root = NULL; root = CreateTree(); printf("先序非递归遍历:"); PreOrderTraverseNonRec(root); printf("\n中序非递归遍历:"); InOrderTraverseNonRec(root); printf("\n后序非递归遍历:"); PostOrderTraverseNonRec(root); printf("\n先序递归遍历:"); PreOrderTraverse(root); printf("\n中序递归遍历:"); InOrderTraverse(root); printf("\n后序递归遍历:"); PostOrderTraverse(root); printf("\n层次非递归遍历:"); LevelOrderTraverseNonRec(root); printf("\n二叉树的深度为:%d",maxDepth(root)); printf("\n二叉树的高度为:%d",BiTreeHeight(root)); printf("\n叶子节点为:%d",LeafNodeNum(root)); printf("\n总节点为:%d", CountNode(root)); printf("\n第3层节点个数为:%d",LevelNodeNum(root, 3)); BiTree q; q = SearchNode(root, 9); if (q) { printf("\n查找到了 :%d", q->data); } else { printf("\n没有查找到 9 "); } return 0; }
|