我正在尝试为二叉树创建一个新节点,当我尝试分配到 - > 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
我的完整代码位于:
答案 0 :(得分:5)
代码中没有struct bin_node
。将struct bin_node *left
更改为:
struct bin_node_t *left;
^^^