二叉树节点 - GCC警告 - 不兼容的类型

时间:2013-02-24 22:29:48

标签: c pointers gcc binary-tree

我正在尝试为二叉树创建一个新节点,当我尝试分配到 - > left和 - >右边时,我遇到了错误。

typedef struct bin_node_t {
     data_t data;
     bst_key_t key;
     struct bin_node *left;
     struct bin_node *right;
} bin_node;

我的bin_node结构定义。

以下是我正在使用的变量:

bin_node *new;
bin_node *node_array[256];

这是我的变量作业:

/* ... code to initialize node_array ... */
new = (bin_node *)malloc(sizeof(bin_node));

这就是我遇到错误的地方:

    new->right = node_array[i+1];
    new->left = node_array[i];

这是我得到的编译器警告:

huffman.c:99: warning: assignment from incompatible pointer type
huffman.c:100: warning: assignment from incompatible pointer type

我的完整代码位于:

http://pastebin.com/iPYP5uVt

1 个答案:

答案 0 :(得分:5)

代码中没有struct bin_node。将struct bin_node *left更改为:

struct bin_node_t *left;
              ^^^