作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我认为我的创作有问题。
void add(N *p) {
N *current, *start;
current = malloc(sizeof(p));
scanf("%d", ¤t->data);
current->next = NULL;
if (p == NULL) {
p = current;
start = current;
} else {
start->next = current;
start = current;
}
}
我认为我的 display()
是正确的。
void display(N *p) {
N *current;
current = p;
while (current != NULL) {
printf("\n%d", current->data);
current = current->next;
}
}
最佳答案
您的malloc(sizeof(p))
仅返回足够的空间用于指针。相反,您需要 malloc(sizeof(N))
。
此外,您需要返回 p
的新值,而不是在 add()
末尾将其丢弃。 (您的 start
也有类似的问题;选择一个作为链接列表的头部。)
关于c - 如何在链接列表中显示我创建的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42191001/
我是一名优秀的程序员,十分优秀!