当前位置:   article > 正文

【数据结构】二叉树——链式结构的实现(代码演示)_二叉树的存储结构及代码

二叉树的存储结构及代码

目录

1 二叉树的链式结构

2  二叉树的创建

 3  二叉树的遍历

3.1 前序遍历

3.1.1运行结果:

3.1.2代码演示图:

3.1.3 演示分析:

3.2 中序遍历

 3.3 后序遍历

3.4 层序遍历

4  判断是否是完全二叉树

5  二叉树节点的个数

5.1 总个数

5.2 叶子节点个数

6  二叉树的深度

7  二叉树的销毁

7.1 二级指针销毁二叉树

7.2 单指针销毁二叉树

8  完整代码

8.1 test.c

8.2 Quene.c

8.3 Quene.h

8.4 运行结果截图


1 二叉树的链式结构

  1. typedef int BTDataType;
  2. typedef struct BinaryTreeNode
  3. {
  4. BTDataType _data;
  5. struct BinaryTreeNode* _left;
  6. struct BinaryTreeNode* _right;
  7. }BTNode;

该结构包含根节点、左子树(_left)和右子树(_right)以及它们所存储的数据(data)

二叉树是:

  1. 空树
  2. 非空:根节点,根节点的左子树、根节点的右子树组成的。

二叉树的创建

  1. // 通过前序遍历的数组"123###45##6##"构建二叉树
  2. BTNode* BinaryTreeCreate(BTDataType* a, int n, int* pi)
  3. {
  4. BTNode* cur = (BTNode*)malloc(sizeof(BTNode));
  5. if (cur == NULL)
  6. {
  7. perror("malloc fail");
  8. exit(-1);
  9. }
  10. if (*pi >= n || a[*pi] == '#')
  11. {
  12. (*pi)++;
  13. return NULL;
  14. }
  15. cur->_data = a[*pi];
  16. (*pi)++;
  17. cur->_left = BinaryTreeCreate(a, n, pi);
  18. cur->_right = BinaryTreeCreate(a, n, pi);
  19. return cur;
  20. }

代码表示用前序遍历创建二叉树,参数a表示传进来的数组首元素地址,参数n表示数组长度,参数pi表示下标的地址,这里用指针表示,因为如果不用指针,则递归的过程中重新定义的pi已经不是原来的pi,即找不到下标了。

第一个if语句表示创建失败后执行;第二个if语句表示如果下标pi大于数组长度n或者数组元素等于'#',下标的位置往后移动一个位置,返回值为NULL; cur->_data = a[*pi]表示将数组中下标为pi的元素赋给当前节点cur->_data;

这里创建了一个二叉树作为例子:

 3  二叉树的遍历

二叉树遍历(Traversal)是按照某种特定的规则,依次对二叉 树中的节点进行相应的操作,并且每个节点只操作一次。

按照规则,二叉树的遍历有:前序/中序/后序的递归结构遍历:

前序遍历:访问根结点的操作发生在遍历其左右子树之前。根、左子树、右子树

中序遍历:访问根结点的操作发生在遍历其左右子树之中(间)。左子树、根、右子树

后序遍历:—访问根结点的操作发生在遍历其左右子树之后。左子树、右子树、根

层序遍历先访问根节点,然后从左往右访问第二层,依次访问下面的节点

3.1 前序遍历

  1. void BinaryTreePrevOrder(BTNode* root)
  2. {
  3. if (root == NULL)
  4. {
  5. printf("NULL");
  6. return ;
  7. }
  8. // printf("%c ", root->_data);
  9. printf("%d ", root->_data);
  10. BinaryTreePrevOrder(root->_left);
  11. BinaryTreePrevOrder(root->_right);
  12. }

代码表示:如果节点为空,则返回空值;打印根节点的值,左子树递归,右子树递归。

这里给出运行前序遍历的完整代码:

  1. #define _CRT_SECURE_NO_WARNINGS
  2. //#include"Heap.h"
  3. #include<time.h>
  4. #include"Quene.h"
  5. //typedef char BTDataType;
  6. typedef int BTDataType;
  7. typedef struct BinaryTreeNode
  8. {
  9. BTDataType _data;
  10. struct BinaryTreeNode* _left;
  11. struct BinaryTreeNode* _right;
  12. }BTNode;
  13. void BinaryTreePrevOrder(BTNode* root)
  14. {
  15. if (root == NULL)
  16. {
  17. printf("NULL ");
  18. return ;
  19. }
  20. // printf("%c ", root->_data);
  21. printf("%d ", root->_data);
  22. BinaryTreePrevOrder(root->_left);
  23. BinaryTreePrevOrder(root->_right);
  24. }
  25. int main()
  26. {
  27. //BTDataType a[] = { 'A','B','D','#','#','E','#','H','#','#','C','F','#','#','G','#','#' };
  28. BTDataType a[] = { 1,2,3,'#','#','#',4,5,'#','#',6,'#','#' };
  29. int n = sizeof(a) / sizeof(a[0]);
  30. int i = 0;
  31. BTNode* root = BinaryTreeCreate(a, n, &i);
  32. BinaryTreePrevOrder(root); //前序遍历:根,左子树,右子树
  33. printf("\n");
  34. return 0;
  35. }

3.1.1运行结果:

3.1.2代码演示图:

 

3.1.3 演示分析:

(跟着箭头看)首先从根节点“1”开始递归,printf("%d ",root->_data)打印根节点“1”的值;BinaryTreePrevOrder(root->_left)对左子树进行递归;打印左子树根节点 “2"的值;BinaryTreePrevOrder(root->_left)继续对左子树进行递归,打印左子树根节点“3”的值;

BinaryTreePreOrder(root->_left)继续对左子树进行递归,root==NULL,打印空值,返回空,此时函数回到调用它的地方,并销毁栈帧,即回到它的父节点"3"的BinaryTreePrevOrder(root->_left)语句哪里;接下来执行BinaryTreePreOrder(root->_right)语句,root==NULL,打印空值,返回空,此时函数回到调用它的地方,并销毁栈帧,即回到它的父节点"2"的BinaryTreePreOrder(root->_right)语句哪里;然后依此类推。

3.2 中序遍历

  1. void BinaryTreeInOrder(BTNode* root)
  2. {
  3. if (root == NULL)
  4. {
  5. return ;
  6. }
  7. BinaryTreeInOrder(root->_left);
  8. // printf("%c ", root->_data);
  9. printf("%d ", root->_data);
  10. BinaryTreeInOrder(root->_right);
  11. }

其实它的代码和前序遍历差不多,只是中序遍历要先走完左子树,才走根节点,最后右子树。

运行结果:

 3.3 后序遍历

  1. void BinaryTreePostOrder(BTNode* root)
  2. {
  3. if (root == NULL)
  4. {
  5. return ;
  6. }
  7. BinaryTreePostOrder(root->_left);
  8. BinaryTreePostOrder(root->_right);
  9. //printf("%c ", root->_data);
  10. printf("%d ", root->_data);
  11. }

 其实后续遍历的代码和前序遍历的代码差别不大,唯一差别就是,后序遍历是递归完左子树和右子树之后才打印根节点。

3.4 层序遍历

  1. void BinaryTreeLevelOrder(BTNode* root)
  2. {
  3. Quene qu;
  4. QueneInit(&qu);
  5. if(root)
  6. QuenePush(&qu, root);
  7. while (!QueneEmpty(&qu))
  8. {
  9. BTNode* cur = QueneFront(&qu);
  10. // printf("%c ", cur->_data);
  11. printf("%d ", cur->_data);
  12. QuenePop(&qu);
  13. if (cur->_left)
  14. {
  15. QuenePush(&qu, cur->_left);
  16. }
  17. if (cur->_right)
  18. {
  19. QuenePush(&qu, cur->_right);
  20. }
  21. }
  22. printf("\n");
  23. QuenDestroy(&qu);
  24. }

层序遍历,我采用队列的链式结构对二叉树的节点的值进行存储。

思路:出上一层,带下一层

代码分析:    按照思路,队头先出“1”,然后把“1”的左节点"2"和右节点"4"尾插进队列,然后出“2”,把“2”的左节点“3”尾插进队列,然后队头出“4”,把“4”的左节点“5”和右节点“6”尾插进队列。以此类推。QueneInit(&qu);表示初始化队列"qu";  QuenePush(&qu, root);表示将二叉树的值尾插到队列中;BTNode* cur = QueneFront(&qu);  表示创建一个二叉树结构体类型的节点cur来存放队列首元素的值;    QuenePop(&qu);表示出队列。

4  判断是否是完全二叉树

  1. bool BinaryTreeComplete(BTNode* root)
  2. {
  3. Quene qu;
  4. QueneInit(&qu);
  5. if(root)
  6. QuenePush(&qu, root);
  7. while (!QueneEmpty(&qu))
  8. {
  9. BTNode* front = QueneFront(&qu);
  10. QuenePop(&qu);
  11. if (front == NULL) //如果当前节点不为空,则将它的左右节点放入队列
  12. {
  13. break;
  14. }
  15. else
  16. {
  17. QuenePush(&qu, front->_left);
  18. QuenePush(&qu, front->_right);
  19. }
  20. }
  21. //出到空以后,如果后面全是空,则是完全二叉树
  22. while (!QueneEmpty(&qu))
  23. {
  24. BTNode* front = QueneFront(&qu);
  25. QuenePop(&qu);
  26. if (front != NULL)
  27. {
  28. QuenDestroy(&qu);
  29. return false;
  30. }
  31. }
  32. QuenDestroy(&qu);
  33. return true;
  34. }

思路:二叉树的节点出队列遇到空值以后,往后都是空值则是完全二叉树,否则不是。

代码分析:如果二叉树的当前节点不为空,入队列;如果队列不为空,先出队列,然后将它的左右节点尾插进队列;第二个while哪里,队列不为空,出队列,遇到空值后,往后都是空值,则为完全二叉树,否则不是完全二叉树。

5  二叉树节点的个数

5.1 总个数

  1. int BinaryTreeSize(BTNode* root)
  2. {
  3. //if (root == NULL)
  4. //{
  5. // return 0;
  6. //}
  7. //int left = BinaryTreeSize(root->_left);
  8. //int right = BinaryTreeSize(root->_right);
  9. //return left + right +1;//返回总节点个数
  10. return root==NULL ? 0:BinaryTreeSize(root->_left) + BinaryTreeSize(root->_right) + 1;
  11. }

思路:如果二叉树的节点为空,则返回0,否则计算出左边 + 右边 + 1。

5.2 叶子节点个数

  1. int BinaryTreeLeafSize(BTNode* root)
  2. {
  3. if (root == NULL)
  4. {
  5. return 0;
  6. }
  7. if (root->_left == NULL && root->_right == NULL)
  8. {
  9. return 1;
  10. }
  11. return BinaryTreeLeafSize(root->_left) + BinaryTreeLeafSize(root->_right);
  12. }

 思路:如果该节点为空,返回0;如果该节点的左右节点都为空,返回1;对左子树和右子树递归。

6  二叉树的深度

  1. int TreeHeight(BTNode* root)
  2. {
  3. if (root == NULL)
  4. {
  5. return 0;
  6. }
  7. int leftHeight = TreeHeight(root->_left);
  8. int rightHeight = TreeHeight(root->_right);
  9. return leftHeight > rightHeight ? leftHeight + 1 : rightHeight + 1;
  10. }

这里需要注意的是要定义两个整形变量来存放左节点和右节点的个数,如果不定义直接

return TreeHeight(root->_left) >TreeHeight(root->_right) ?  TreeHeight(root->_left)+1: TreeHeight(root->_right)+1;性能会下降很多,因为在"?"前面的递归只是做了比较,并没有保存比较的值,使得出现很多重复的计算,会极大的浪费资源,上一层会连累下一层,每一层都要重复计算。

7  二叉树的销毁

7.1 二级指针销毁二叉树

  1. void BinaryTreeDestory(BTNode** root) //参数root是一个指向指针的指针,因为需要修改每个节点的指针
  2. {
  3. if (*root)
  4. {
  5. BinaryTreeDestory(&(*root)->_left);
  6. BinaryTreeDestory(&(*root)->_right);
  7. free(*root);
  8. *root = NULL; //防止内存泄露
  9. }
  10. }

说明:这里使用后续遍历对二叉树的节点进行置空。

BinaryTreeDestroy(&((*root)->left)) 中的 (*root)->left 是一个指向左子树根节点的指针,它的类型为 TreeNode*。因此,我们需要先用 * 运算符解引用 root 指向的地址,得到指向二叉树根节点的指针 *root,然后再使用箭头运算符 -> 访问其左子树,并取其地址作为参数传递给 BinaryTreeDestroy() 函数。

这样做是因为我们需要修改根节点的左子树指针,使其指向空,并释放原来左子树所占用的内存。如果直接传递 (*root)->left 作为参数,则只是将一个指向左子树根节点的临时指针传递给了函数,在函数内部无法修改原来的左子树指针。
 

在这个函数中,使用了一个BTNode**类型的指针作为参数。这个指针指向了二叉树根结点的地址。在函数内部,首先判断当前节点是否为空,如果为空则直接返回。然后递归地销毁当前节点的左子树和右子树,直到最底层的叶子节点。最后释放当前节点所占用的内存,并将其只想空指针以避免野指针。

7.2 单指针销毁二叉树

  1. void TreeDestory(BTNode* root)
  2. {
  3. if(root==NULL)
  4. return;
  5. TreeDestory(root->_left);
  6. TreeDestory(root->_right);
  7. free(root);
  8. }

然后再主函数哪里调用TreeDestory()函数之后需要添加"root==NULL"

8  完整代码

8.1 test.c

  1. #define _CRT_SECURE_NO_WARNINGS
  2. //#include"Heap.h"
  3. #include<time.h>
  4. #include"Quene.h"
  5. //typedef char BTDataType;
  6. typedef int BTDataType;
  7. typedef struct BinaryTreeNode
  8. {
  9. BTDataType _data;
  10. struct BinaryTreeNode* _left;
  11. struct BinaryTreeNode* _right;
  12. }BTNode;
  13. // 通过前序遍历的数组"ABD##E#H##CF##G##"构建二叉树
  14. BTNode* BinaryTreeCreate(BTDataType* a, int n, int* pi);
  15. // 二叉树销毁
  16. //void BinaryTreeDestory(BTNode** root);
  17. void BinaryTreeDestory(BTNode* root);
  18. // 二叉树节点个数
  19. int BinaryTreeSize(BTNode* root);
  20. // 二叉树叶子节点个数
  21. int BinaryTreeLeafSize(BTNode* root);
  22. // 二叉树第k层节点个数
  23. int BinaryTreeLevelKSize(BTNode* root, int k);
  24. //二叉树的深度
  25. int TreeHeight(BTNode* root);
  26. // 二叉树查找值为x的节点
  27. BTNode* BinaryTreeFind(BTNode* root, BTDataType x);
  28. // 二叉树前序遍历
  29. void BinaryTreePrevOrder(BTNode* root);
  30. // 二叉树中序遍历
  31. void BinaryTreeInOrder(BTNode* root);
  32. // 二叉树后序遍历
  33. void BinaryTreePostOrder(BTNode* root);
  34. // 层序遍历
  35. void BinaryTreeLevelOrder(BTNode* root);
  36. // 判断二叉树是否是完全二叉树
  37. //int BinaryTreeComplete(BTNode* root);
  38. bool BinaryTreeComplete(BTNode* root);
  39. // 通过前序遍历的数组"ABD##E#H##CF##G##"构建二叉树
  40. BTNode* BinaryTreeCreate(BTDataType* a, int n, int* pi)
  41. {
  42. BTNode* cur = (BTNode*)malloc(sizeof(BTNode));
  43. if (cur == NULL)
  44. {
  45. perror("malloc fail");
  46. exit(-1);
  47. }
  48. if (*pi >= n || a[*pi] == '#')
  49. {
  50. (*pi)++;
  51. return NULL;
  52. }
  53. cur->_data = a[*pi];
  54. (*pi)++;
  55. cur->_left = BinaryTreeCreate(a, n, pi);
  56. cur->_right = BinaryTreeCreate(a, n, pi);
  57. return cur;
  58. }
  59. //void BinaryTreeDestory(BTNode** root) //参数root是一个指向指针的指针,因为需要修改每个节点的指针
  60. //{
  61. // if (*root)
  62. // {
  63. // BinaryTreeDestory(&(*root)->_left);
  64. // BinaryTreeDestory(&(*root)->_right);
  65. // free(*root);
  66. // *root = NULL; //防止内存泄露
  67. // }
  68. //
  69. //}
  70. void BinaryTreeDestory(BTNode* root)
  71. {
  72. if (root == NULL)
  73. return;
  74. BinaryTreeDestory(root->_left);
  75. BinaryTreeDestory(root->_right);
  76. free(root);
  77. }
  78. int BinaryTreeSize(BTNode* root)
  79. {
  80. //if (root == NULL)
  81. //{
  82. // return 0;
  83. //}
  84. //int left = BinaryTreeSize(root->_left);
  85. //int right = BinaryTreeSize(root->_right);
  86. //return left + right +1;//返回总节点个数
  87. return root==NULL ? 0:BinaryTreeSize(root->_left) + BinaryTreeSize(root->_right) + 1;
  88. }
  89. int BinaryTreeLeafSize(BTNode* root)
  90. {
  91. if (root == NULL)
  92. {
  93. return 0;
  94. }
  95. if (root->_left == NULL && root->_right == NULL)
  96. {
  97. return 1;
  98. }
  99. return BinaryTreeLeafSize(root->_left) + BinaryTreeLeafSize(root->_right);
  100. }
  101. int BinaryTreeLevelKSize(BTNode* root, int k)
  102. {
  103. if (root == NULL)
  104. {
  105. return 0;
  106. }
  107. if (k == 1)
  108. {
  109. return 1;
  110. }
  111. return BinaryTreeLevelKSize(root->_left, k - 1) + BinaryTreeLevelKSize(root->_right, k - 1);
  112. }
  113. BTNode* BinaryTreeFind(BTNode* root, BTDataType x)
  114. {
  115. if (root == NULL)
  116. {
  117. return NULL;
  118. }
  119. if (root->_data == x)
  120. {
  121. return root;
  122. }
  123. BTNode* ret1 = BinaryTreeFind(root->_left, x);
  124. if (ret1)
  125. return ret1;
  126. BTNode* ret2 = BinaryTreeFind(root->_right, x);
  127. if (ret2)
  128. return ret2;
  129. return NULL;
  130. }
  131. int TreeHeight(BTNode* root)
  132. {
  133. if (root == NULL)
  134. {
  135. return 0;
  136. }
  137. int leftHeight = TreeHeight(root->_left);
  138. int rightHeight = TreeHeight(root->_right);
  139. return leftHeight > rightHeight ? leftHeight + 1 : rightHeight + 1;
  140. }
  141. void BinaryTreePrevOrder(BTNode* root)
  142. {
  143. if (root == NULL)
  144. {
  145. // printf("NULL ");
  146. return ;
  147. }
  148. // printf("%c ", root->_data);
  149. printf("%d ", root->_data);
  150. BinaryTreePrevOrder(root->_left);
  151. BinaryTreePrevOrder(root->_right);
  152. }
  153. void BinaryTreeInOrder(BTNode* root)
  154. {
  155. if (root == NULL)
  156. {
  157. // printf("NULL ");
  158. return ;
  159. }
  160. BinaryTreeInOrder(root->_left);
  161. // printf("%c ", root->_data);
  162. printf("%d ", root->_data);
  163. BinaryTreeInOrder(root->_right);
  164. }
  165. void BinaryTreePostOrder(BTNode* root)
  166. {
  167. if (root == NULL)
  168. {
  169. return ;
  170. }
  171. BinaryTreePostOrder(root->_left);
  172. BinaryTreePostOrder(root->_right);
  173. //printf("%c ", root->_data);
  174. printf("%d ", root->_data);
  175. }
  176. void BinaryTreeLevelOrder(BTNode* root)
  177. {
  178. Quene qu;
  179. QueneInit(&qu);
  180. if(root)
  181. QuenePush(&qu, root);
  182. while (!QueneEmpty(&qu))
  183. {
  184. BTNode* cur = QueneFront(&qu);
  185. // printf("%c ", cur->_data);
  186. printf("%d ", cur->_data);
  187. QuenePop(&qu);
  188. if (cur->_left)
  189. {
  190. QuenePush(&qu, cur->_left);
  191. }
  192. if (cur->_right)
  193. {
  194. QuenePush(&qu, cur->_right);
  195. }
  196. }
  197. printf("\n");
  198. QuenDestroy(&qu);
  199. }
  200. //int BinaryTreeComplete(BTNode* root)
  201. //{
  202. // Quene qu;
  203. // BTNode* cur;
  204. // int tag = 0;
  205. // QueneInit(&qu);
  206. // QuenePush(&qu, root);
  207. //
  208. // while (!QueneEmpty(&qu))
  209. // {
  210. // cur = QueneFront(&qu);
  211. printf("%c ", cur->_data);
  212. // printf("%d ", cur->_data);
  213. // if (cur->_right && !cur->_left)
  214. // {
  215. // return 0;
  216. // }
  217. // if (tag && (cur->_left || cur->_right)) //tag?
  218. // {
  219. // return 0;
  220. // }
  221. //
  222. //
  223. // if (cur->_left)
  224. // {
  225. // QuenePush(&qu, cur->_left);
  226. // }
  227. //
  228. // if (cur->_right)
  229. // {
  230. // QuenePush(&qu, cur->_right);
  231. // }
  232. // else
  233. // {
  234. // tag = 1;
  235. // }
  236. // QuenePop(&qu);
  237. // }
  238. //
  239. // QuenDestroy(&qu);
  240. // return 1;
  241. //}
  242. bool BinaryTreeComplete(BTNode* root)
  243. {
  244. Quene qu;
  245. QueneInit(&qu);
  246. QuenePush(&qu, root);
  247. while (!QueneEmpty(&qu))
  248. {
  249. BTNode* front = QueneFront(&qu);
  250. QuenePop(&qu);
  251. if (front == NULL) //如果当前节点不为空,则将它的左右节点放入队列
  252. {
  253. break;
  254. }
  255. else
  256. {
  257. QuenePush(&qu, front->_left);
  258. QuenePush(&qu, front->_right);
  259. }
  260. }
  261. //出到空以后,如果后面全是空,则是完全二叉树
  262. while (!QueneEmpty(&qu))
  263. {
  264. BTNode* front = QueneFront(&qu);
  265. QuenePop(&qu);
  266. if (front != NULL)
  267. {
  268. QuenDestroy(&qu);
  269. return false;
  270. }
  271. }
  272. QuenDestroy(&qu);
  273. return true;
  274. }
  275. int main()
  276. {
  277. //BTDataType a[] = { 'A','B','D','#','#','E','#','H','#','#','C','F','#','#','G','#','#' };
  278. BTDataType a[] = { 1,2,3,'#','#','#',4,5,'#','#',6,'#','#' };
  279. int n = sizeof(a) / sizeof(a[0]);
  280. int i = 0;
  281. BTNode* root = BinaryTreeCreate(a, n, &i);
  282. BinaryTreePrevOrder(root); //前序遍历:根,左子树,右子树
  283. printf("\n");
  284. BinaryTreeInOrder(root); //中序遍历:左子树,根,右子树
  285. printf("\n");
  286. BinaryTreePostOrder(root); //后序遍历:左子树,右子树,根
  287. printf("\n");
  288. BinaryTreeLevelOrder(root); //层序遍历
  289. printf("\n");
  290. printf("Size:%d\n", BinaryTreeSize(root));
  291. printf("leafsize:%d\n", BinaryTreeLeafSize(root));
  292. printf("TreeHeight:%d\n", TreeHeight(root));
  293. //int iscompleate= BinaryTreeComplete(root);
  294. //if (iscompleate == 1)
  295. // printf("是完全二叉树\n");
  296. //else
  297. // printf("不是完全二叉树\n");
  298. printf("TreeComplete:%d \n", BinaryTreeComplete(root));
  299. BinaryTreeDestory(root);
  300. root = NULL;
  301. return 0;
  302. }

8.2 Quene.c

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include"Quene.h"
  3. void QueneInit(Quene* pq)
  4. {
  5. assert(pq);
  6. pq->head = pq->tail = NULL;
  7. pq->size = 0;
  8. }
  9. void QuenDestroy(Quene* pq)
  10. {
  11. assert(pq);
  12. QNode* cur = pq->head;
  13. while (cur)
  14. {
  15. QNode* del = cur;
  16. cur = cur->next;
  17. free(del);
  18. }
  19. pq->head = pq->tail = NULL;
  20. pq->size = 0;
  21. }
  22. void QuenePush(Quene* pq, QDataType x) //进队列
  23. {
  24. assert(pq);
  25. QNode* newnode = (QNode*)malloc(sizeof(QNode)); //插入值时开辟空间
  26. if (newnode == NULL)
  27. {
  28. perror("malloc fail");
  29. exit(-1);
  30. }
  31. newnode->next = NULL;
  32. newnode->data = x;
  33. if (pq->tail == NULL)
  34. {
  35. pq->head = pq->tail = newnode;
  36. }
  37. else
  38. {
  39. pq->tail->next = newnode; //尾插到pq->tail后面
  40. pq->tail = newnode; //重新调整pq->tail的位置
  41. }
  42. pq->size++; //记录数据
  43. }
  44. void QuenePop(Quene* pq) //出队列
  45. {
  46. assert(pq); //判断队列是否为空,假如传进来的是一个空队列则不能出队列
  47. assert(!QueneEmpty(pq));
  48. if (pq->head->next == NULL)
  49. {
  50. free(pq->head);
  51. pq->head = pq->tail = NULL;
  52. }
  53. else
  54. {
  55. QNode* del = pq->head;
  56. pq->head = pq->head->next;
  57. free(del);
  58. }
  59. pq->size--;
  60. }
  61. QDataType QueneFront(Quene* pq)
  62. {
  63. assert(pq);
  64. assert(!QueneEmpty(pq));
  65. return pq->head->data;
  66. }
  67. QDataType QueneBack(Quene* pq)
  68. {
  69. assert(pq);
  70. assert(!QueneEmpty(pq));
  71. return pq->tail->data;
  72. }
  73. bool QueneEmpty(Quene* pq)
  74. {
  75. assert(pq);
  76. return pq->head == NULL && pq->tail == NULL;
  77. }
  78. int QueneSize(Quene* pq)
  79. {
  80. assert(pq);
  81. return pq->size;
  82. }

8.3 Quene.h

  1. #pragma once
  2. #include<stdio.h>
  3. #include<assert.h>
  4. #include<stdlib.h>
  5. #include<stdbool.h>
  6. //前置声明
  7. struct BinaryTreeNode;
  8. typedef struct BinaryTreeNode* QDataType; //定义队列数据类型
  9. typedef struct QueneNode
  10. {
  11. QDataType data; //队列中的数据
  12. struct QueneNode* next; //队列的下一个节点
  13. }QNode;
  14. typedef struct Queue
  15. {
  16. QNode* head; //队头
  17. QNode* tail; //队尾
  18. int size; //队列的长度
  19. }Quene;
  20. void QueneInit(Quene* pq); //队列初始化
  21. void QuenDestroy(Quene* pq); //队列的销毁
  22. void QuenePush(Quene* pq, QDataType x); //数据进队列
  23. void QuenePop(Quene* pq); //数据出队列
  24. QDataType QueneFront(Quene* pq); //队头的值
  25. QDataType QueneBack(Quene* pq); //队尾的值
  26. bool QueneEmpty(Quene* ps); //队列判空
  27. int QueneSize(Quene* pq); //队列大小

8.4 运行结果截图

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/592570
推荐阅读
相关标签
  

闽ICP备14008679号