我正在尝试将用户输入的搜索词与链接列表中的多个名称进行比较。我确定它在 strcmp 处存在段错误,但 strcmp 处的段错误的解决方案似乎都不是问题。
这是我的代码!我对 StackOverflow 和 C 还很陌生,所以对于我在发布此内容或在实际编程中犯的任何愚蠢错误,我提前道歉。><
struct node{
char* name;
struct node* next;
};
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int main(){
char reader;
char srchbuff[1001];
char name[10] = "Justin";
char* srch;
int i;
struct node *head;
struct node *cur;
head = malloc(sizeof(struct node));
head->name = name;
head->next = 0;
for(i=0; i<1000; i++){
scanf("%c", &reader);
srchbuff[i] = reader;
}
srchbuff[i] = '\0';
srch = malloc(sizeof(char)*i);
strcpy(srch, srchbuff);
cur = head;
while( (cur != NULL) && (strcmp(cur->name, srch)) != 0){
cur = cur->next;
}
}
在单独的函数中分配了其他节点,可以正常工作,并且信息也分配在单独的函数中(它也可以正常工作),并且我的结构在我的头文件中,所以一切都很愉快和认可。
我还使用 gdb 和 printf 语句进行了测试,以确保 strcmp 是我要进行段错误的地方,而且肯定是。在此先感谢您的任何建议 :)