我正在构建一个带有结构的链表字典,列表中的每个节点都定义如下:
typedef struct node node;
struct node
{
int key;
char value[ARRAY_MAX];
node *next;
};
当我遇到问题时,我在insert和makedict函数中为key或value赋值。我在作业中收到以下错误:
node* insert(node* start, char* vinput, int kinput) {
node* temp = start;
while((temp->next->key < kinput) && temp->next!=NULL) {
temp=temp->next;
}
if(temp->key==kinput) {
temp->key = kinput;
return temp;
} else {
node* inputnode = (node*)malloc(sizeof(node));
inputnode->next = temp->next;
temp->next = inputnode;
inputnode->key = kinput; /*error: incompatible types in assignment*/
inputnode->value = vinput;
return inputnode;
}
和
node* makedict(char* vinput, int kinput) {
node* temp = (node*)malloc(sizeof(node));
temp->value = vinput;
temp->key = kinput; /*error: incompatible types in assignment*/
temp->next = NULL;
return temp;
}
我知道我可能错过了一些非常明显的东西,但我一直在读这段代码而无济于事。任何帮助表示赞赏。
答案 0 :(得分:7)
我认为该行
inputnode->value = vinput;
是编译器抱怨的内容。尝试
strcpy(inputnode->value, vinput);
或者,更好的是,将'value'字段设为char *并执行
inputnode->value = strdup(vinput)