在给定预序序列的情况下,用 C 语言构造一棵只有叶子的树

标签 c recursion binary-tree computer-science

我正在尝试构建一种特定类型的树,其中每个内部节点的数据都依赖于树的叶子。我有一个预排序数组, pre[] = { 0,0,0,1,2,3,0,4,5} 其中每个“0”代表一个内部节点,以及任何东西else 代表叶子。如果我要构建这棵树,它将如下所示:

         0
      /     \
     0       0
    / \     / \
   0   3   4   5
  / \
 1   2

我在递归调用方面遇到问题,特别是在 while 循环中。在我完成创建带有数据“2”的节点之后,在返回根之后,我就留在了它上面的内部节点。这个内部节点将继续在 while 循环中运行并弄乱我的树。如果我决定在条件语句末尾的 while 循环中放置一个返回根,那么构造将在填充树的左侧后停止。我该如何解决这个问题?

  1 #include <stdio.h>
  2 #include <stdlib.h>
  3 #include <limits.h>
  4
  5 struct node
  6 {
  7         int data;
  8         int leafNode;
  9         struct node *left;
 10         struct node *right;
 11 };
 12
 14 struct node* newNode (int data){
 15         struct node* temp = (struct node *) malloc(sizeof(struct node));
 16         temp->data =data;
 17         temp->left = temp->right= NULL;
 18         return temp;
 19 }
 22 struct node* _constructTree( int pre[], int * preIndex, int low, int high, int size, int leaf){
 23         if (*preIndex >= size || low > high){
 24                 return NULL;}
 25
 26         printf("We are about to create this node: %d\n", pre[*preIndex]);
 27
 28         struct node* root = newNode(pre[*preIndex]);
 29         *preIndex = *preIndex + 1;
 30         if(leaf){
 31                 printf("Returning this leaf node: %d\n", pre[*preIndex - 1]);
 32                 return root;}
 33
 34
 35         if(low == high){
 36                 return root;}
 37
 38         while(low<high){
 39                 if(pre[*preIndex] == 0){
 40                 root->left = _constructTree(pre, preIndex, *preIndex, high, size, 0);}
 41
 42                 if(root->left == NULL){
 43                 root->left  = _constructTree(pre, preIndex, *preIndex, high, size, 1);
 44                 return root;
 45                 }
 46                 if(pre[*preIndex] != 0){
 47                 root->right = _constructTree(pre, preIndex, *preIndex, high, size, 1);
 48                 return root;
 49                 }
 50                 else{
 51                 root->right = _constructTree(pre,preIndex, *preIndex, high, size, 0);}
 52                         }
 53                 return root;
 54         }
 55 }
 56
 57 struct node * constructTree(int pre[], int size){
 58         int preIndex = 0;
 59         return _constructTree(pre, &preIndex, 0, size -1, size, 0);
 60         }
 61

最佳答案

这样的东西行不通(稍微总结一下,但希望它能展示这个想法)?:

construct_tree(int pre[], int* index){
    root=pre[*index];
    *index++;
    if(root>0)return root;
    left=construct_tree(pre,index);
    right=construct_tree(pre,index);
    return root;
}

关于在给定预序序列的情况下,用 C 语言构造一棵只有叶子的树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40516245/

相关文章:

Python,os.walk(),传递信息备份?

php - 使用 mysql/php 中的 id/parent_id 模型获取记录的所有父项的最简单方法是什么?

c# - 在 .net 中搜索不等式的排序 double

c++ - 棘手的 C 问题。动态函数调用

C++ 2 嵌套for循环转换为递归

c - 二叉树段错误(核心已转储)

algorithm - 二叉树的平衡是如何实现的?

C++ 程序使用 C 库中的损坏符号导致 undefined symbol

c - "sizeof"之后的赋值表达式从未执行过吗?

c - 使用简单的unix管道