0

私はコーディングが初めてで、配列から取得したバイナリツリーを作成しようとしています。実行しようとすると、実行時エラーが発生します。誰かがこのコードの何が問題なのか説明できますか? tnode はノードを格納するための構造体であり、construct_tree はツリーを構築するために呼び出されます。

#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>         
        struct tnode{
            int value;
            struct tnode *parent ;
            struct tnode *left;
            struct tnode *right;
        };

        typedef struct tnode node;


    node* construct_tree(int *a,int n){
        printf("where");        
        node *root, *temp, *traverse, *traverse_parent;
        root = (node*)malloc(sizeof(node));

        root->value = a[0];
        root->parent = NULL;
        root->left = NULL;    
        root->right = NULL;    
        traverse = root;
        printf("where1");    
        printf("\n%d",a[0]);
        int i=0;
        for(i=1;i<n;i++){
            temp = (node*)malloc(sizeof(node));
            temp->value = a[i];
            temp->left = NULL;
            temp->right = NULL;

            while(traverse == NULL){
                traverse_parent = traverse;
                if(traverse->value < a[i]) traverse = traverse->right;
                else traverse = traverse->left;            
            }
            temp ->parent = traverse_parent;        
            printf("\n a[i]: %d and parent : %d",a[i],traverse_parent->value);
        }
        return root;
    }


    int main(){
        int a[] = {5,3,7,6,11,1,4};
        node* root;
        printf("where2");        
        root = construct_tree(a,6);
        //tree_traversal(root);
    }
4

1 に答える 1

0

内部は初期化され、無効while化されることはないため、実行されることはありません。ループの各反復で(完了後)に置き換え、またリセットしrootたいと思うでしょう。while(traverse == NULL)while(traverse != NULL)traverserootforwhile

于 2012-11-30T11:26:49.043 に答える