基本上我在这里有 2 个链表:list 和 distinct。有几组词早先已保存到“列表”结构中。打算编写一个程序,该程序将找到不同/唯一的单词并将其保存到“不同”结构中。这是我到目前为止基于我的指针概念得到的。但是,当我尝试打印“不同”时,程序崩溃:(如果我错了,请纠正我。
struct list {
char string[50];
struct list *next;
};
struct distinct {
char string[50];
struct distinct *next;
};
void checkdistinct() {
list *ori = NULL;
distinct *copy = NULL;
distinct *check = NULL;
if(ori == NULL && copy == NULL) { //first time.
ori = ori->next;
copy = copy->next;
copy = (distinct*)malloc(sizeof(distinct));
strcpy(copy->string, ori->string);
ori = ori->next;
copy = copy->next;
}
else {}
while(ori!=NULL) {
check = check->next;
while(check != NULL) {
if(strcmp(ori->string, check->string)!=0) {
check = check->next;
}
else {
ori = ori->next;
check = NULL;
}
}
//only compare same casing words, for now.
copy = (distinct*)malloc(sizeof(distinct));
strcpy(copy->string, ori->string);
ori = ori->next;
copy = copy->next;
}
}
当我尝试在 main 中打印时,它会崩溃:(如果您需要对代码的额外评论,请回复。谢谢!