当前位置:   article > 正文

头歌实训作业:二叉树——课上练(链式存储结构)

二叉树——课上练

写完作业后也要造福后来者!如果对你有帮助,点个赞呗~

目录

第1关:二叉树创建及遍历

第2关:计算二叉树中叶子的个数

第3关:实现二叉树左右子树互换

第4关:计算二叉树中有两个孩子的结点个数

 

第1关:二叉树创建及遍历

实现二叉树的创建函数及二叉树的遍历函数。

  1. #include <iostream>
  2. using namespace std;
  3. typedef char DataType;
  4. //二叉树数据结构
  5. struct node
  6. {
  7. DataType info ; //存放结点数据
  8. struct node *lchild , *rchild ; //指向左右孩子的指针
  9. };
  10. typedef struct node *BiTree ;
  11. /*创建二叉树
  12. 函数名:createBiTree
  13. 参数:无
  14. 返回值:二叉树根结点指针
  15. */
  16. BiTree createBiTree(void)
  17. {
  18. //请在此处填写代码, 完成二叉树和创建,返回值是二叉树的根结点指针
  19. /********** Begin **********/
  20. DataType x;
  21. BiTree node;
  22. scanf("%c",&x);
  23. if(x=='#')
  24. return NULL;
  25. node = (BiTree)malloc(sizeof(struct node));
  26. if(node==NULL)
  27. return NULL; //创建失败
  28. node->info = x;
  29. node->lchild =createBiTree() ;
  30. node->rchild = createBiTree();
  31. return node;
  32. /********** End *********/
  33. }
  34. void visit(BiTree T) //输出结点T的数据
  35. {
  36. cout<<T->info ;
  37. }
  38. //先根遍历二叉树
  39. void preOrder(BiTree root)
  40. {
  41. /********** Begin **********/
  42. if (root==NULL) return;
  43. visit(root);
  44. preOrder(root->lchild);
  45. preOrder(root->rchild);
  46. /********** End *********/
  47. }
  48. //中根遍历二叉树
  49. void inOrder(BiTree root)
  50. {
  51. if(root == NULL) return ;
  52. inOrder(root->lchild);
  53. visit(root);
  54. inOrder(root->rchild);
  55. }
  56. //后根遍历二叉树
  57. void postOrder(BiTree root)
  58. {
  59. /********** Begin **********/
  60. if(root==NULL)return;
  61. postOrder(root->lchild);
  62. postOrder(root->rchild);
  63. visit(root);
  64. /********** End *********/
  65. }
  66. int main(void)
  67. {
  68. BiTree root = createBiTree();
  69. preOrder(root);
  70. cout<<'\n';
  71. inOrder(root);
  72. cout<<'\n';
  73. postOrder(root);
  74. }

第2关:计算二叉树中叶子的个数

在完成第一关的基础上,编写一个函数,能计算一棵二叉树中树叶的个数并输出。

  1. #include <iostream>
  2. using namespace std;
  3. typedef char DataType;
  4. int count = 0; //统计叶节点个数的变量
  5. //二叉树数据结构
  6. struct node
  7. {
  8. DataType info ; //存放结点数据
  9. struct node *lchild , *rchild ; //指向左右孩子的指针
  10. };
  11. typedef struct node *BiTree ;
  12. /*创建二叉树
  13. 函数名:createBiTree
  14. 参数:无
  15. 返回值:二叉树根结点指针
  16. */
  17. BiTree createBiTree(void)
  18. {
  19. char ch ;
  20. BiTree root ;
  21. cin>>ch ;
  22. //scanf("%c", &ch);
  23. if(ch == '#') root = NULL;
  24. else{
  25. //root = new struct node ;
  26. root = (BiTree)malloc(sizeof(struct node));
  27. root->info = ch ;
  28. root->lchild = createBiTree() ;
  29. root->rchild = createBiTree();
  30. }
  31. return root ;
  32. }
  33. void visit(BiTree T)
  34. {
  35. cout<<T->info ;
  36. }
  37. int countLeaf(BiTree root)
  38. {
  39. //请在此处填写代码, 计算二叉树中树叶的个数
  40. /********** Begin **********/
  41. //更改遍历时访问结点的操作即可
  42. if(root != NULL)
  43. {
  44. if((root->lchild == NULL) && (root -> rchild == NULL))
  45. count++;
  46. countLeaf(root->lchild);
  47. countLeaf(root->rchild);
  48. }
  49. return count;
  50. /********** End **********/
  51. }
  52. int main(void)
  53. {
  54. BiTree root = createBiTree();
  55. cout<<countLeaf(root);
  56. }

第3关:实现二叉树左右子树互换

编写一个把二叉树左右子树交换的函数。

以下图一所示的二叉树为例,左右子树交换后如图二所示。 png

  1. #include <iostream>
  2. using namespace std;
  3. typedef char DataType;
  4. //二叉树数据结构
  5. struct node
  6. {
  7. DataType info ; //存放结点数据
  8. struct node *lchild , *rchild ; //指向左右孩子的指针
  9. };
  10. typedef struct node *BiTree ;
  11. /*创建二叉树
  12. 函数名:createBiTree
  13. 参数:无
  14. 返回值:二叉树根结点指针
  15. */
  16. BiTree createBiTree(void)
  17. {
  18. char ch ;
  19. BiTree root ;
  20. cin>>ch ;
  21. if(ch == '#') root = NULL;
  22. else{
  23. root = new struct node ;
  24. root->info = ch ;
  25. root->lchild = createBiTree() ;
  26. root->rchild = createBiTree();
  27. }
  28. return root ;
  29. }
  30. void changeLR(BiTree root)
  31. {
  32. //请在此处填写代码, 完成二叉树左右子树互换
  33. /********** Begin **********/
  34. if(root != NULL && (root->lchild != NULL || root->rchild != NULL))
  35. {
  36. changeLR(root->lchild);
  37. changeLR(root->rchild);
  38. //抵达叶结点,开始交换
  39. BiTree t = root->lchild;
  40. root->lchild = root->rchild;
  41. root->rchild = t;
  42. }
  43. else
  44. return;
  45. /********** End **********/
  46. }
  47. void visit(BiTree T) //输出结点T的数据
  48. {
  49. cout<<T->info ;
  50. }
  51. //中序遍历
  52. void inOrder(BiTree root)
  53. {
  54. if(root == NULL) return ;
  55. inOrder(root->lchild);
  56. visit(root);
  57. inOrder(root->rchild);
  58. }
  59. int main(void)
  60. {
  61. BiTree root = createBiTree();
  62. changeLR(root);
  63. inOrder(root);
  64. }

 

第4关:计算二叉树中有两个孩子的结点个数

编写一个能计算二叉树中有两个孩子的满结点个数。

  1. #include <iostream>
  2. using namespace std;
  3. typedef char DataType;
  4. int count = 0; //有两个孩子的满结点个数
  5. //二叉树数据结构
  6. struct node
  7. {
  8. DataType info ; //存放结点数据
  9. struct node *lchild , *rchild ; //指向左右孩子的指针
  10. };
  11. typedef struct node *BiTree ;
  12. /*创建二叉树
  13. 函数名:createBiTree
  14. 参数:无
  15. 返回值:二叉树根结点指针
  16. */
  17. BiTree createBiTree(void)
  18. {
  19. char ch ;
  20. BiTree root ;
  21. cin>>ch ;
  22. if(ch == '#') root = NULL;
  23. else{
  24. root = new struct node ;
  25. root->info = ch ;
  26. root->lchild = createBiTree() ;
  27. root->rchild = createBiTree();
  28. }
  29. return root ;
  30. }
  31. void visit(BiTree T)
  32. {
  33. cout<<T->info ;
  34. }
  35. int countFullNode(BiTree root)
  36. {
  37. //请在此处填写代码,计算二叉树中满结点的个数
  38. /********** Begin **********/
  39. if(root != NULL)
  40. {
  41. if(root->lchild && root->rchild)
  42. count++;
  43. countFullNode(root->lchild);
  44. countFullNode(root->rchild);
  45. }
  46. return count;
  47. /*********** End-**********/
  48. }
  49. int main(void)
  50. {
  51. BiTree root = createBiTree();
  52. cout<<countFullNode(root) ;
  53. }

 

 

 

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

闽ICP备14008679号