最近我一直在通过编写不同的数据结构来提高我的编程技能,这就是一个开始!!!
现在我正在编写链表,但是有些烦人的事情发生了,这个问题困扰了我很长时间,因为我不太确定这个错误,Segmentation fault(core dumped),但我确实知道我做错了什么内存的操作。
链接列表.h:
struct LINK_LIST {
char *string;
struct LINK_LIST *next;
}link_list;
===============================
链接列表.c:
#include<stdio.h>
#include<stdlib.h>
int init_link_list(struct LINK_LIST *new_link) {
//char *new_string;
int i;
//new_string = (char *)malloc(sizeof(char) * STRING_SIZE);
new_link = (struct LINK_LIST *)malloc(sizeof(struct LINK_LIST));
if (new_link==NULL) {
fprintf(stderr, "Insufficient memory!!!");
return ERROR;
}
//new_link->string = new_string;
new_link->string = NULL;
//new_link->next = NULL;
return OK;
}
这里我定义了初始化操作,然后是插入操作:
int insert(struct LINK_LIST *link, int pos, char *in) {
int i;
if (get_length(link)>=STRING_SIZE) {
fprintf(stderr, "Link list is full!!!");
return ERROR;
}
else {
if (pos < 0 || pos-1 > get_length(link)) {
fprintf(stderr, "Invalid position");
return ERROR;
}
else {
i = 0;
do {
struct LINK_LIST *new_node;
init_link_list(new_node);
new_node->next = link->next;
link->next = new_node;
new_node->string = in;
i += 1;
} while(i<pos-1);
}
}
return OK;
}