修正如下代码:#include <stdio.h> #include <stdlib.h> #include <string.h> struct stu{ char name[20]; int no; struct stu *next; }; int myCreate(struct stu *head,int m); void show(struct stu *head); struct stu * myIndex(struct stu *head,char *s); int myDel(struct stu *head,char *s); int main() { struct stu head; struct stu *p; char name[20]; int m; scanf("%d", &m);// 输入m,代表结点个数 if(myCreate(&head,m)==1)//如果创建成功 { printf("created...\n"); show(&head);//显示所有结点的信息 } else printf("create failure."); return 0; } int myCreate(struct stu *head,int m) { struct stu *p,*pre; *head=NULL; while(m--) { (struct stu *) malloc(sizeof(struct stu)); scanf("%s %d",p->name,p->no); if(p->no==NULL) { return 0; } p->next = NULL; if (head == NULL) { head = p; } else { pre->next = p; } pre = p; } return 1; } void show(struct stu *head) { struct stu *p; *p=head->next; while(p!=NULL) { printf("%s %d\n",p->name,p->no); p=p->next; } }
时间: 2024-01-15 11:03:40 浏览: 77
学生信息管理系统(数组版)
好的,这里是修改后的代码:
```cpp
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct stu{
char name[20];
int no;
struct stu *next;
};
int myCreate(struct stu **head,int m);
void show(struct stu *head);
struct stu * myIndex(struct stu *head,char *s);
int myDel(struct stu *head,char *s);
int main() {
struct stu *head = NULL;
char name[20];
int m;
scanf("%d", &m); // 输入m,代表结点个数
if(myCreate(&head,m)==1) { //如果创建成功
printf("created...\n");
show(head); //显示所有结点的信息
}
else {
printf("create failure.");
}
return 0;
}
int myCreate(struct stu **head,int m) {
struct stu *p,*pre;
*head = NULL;
while(m--) {
p = (struct stu *) malloc(sizeof(struct stu));
scanf("%s %d",p->name,&p->no);
if(p->no == 0) {
return 0;
}
p->next = NULL;
if (*head == NULL) {
*head = p;
}
else {
pre->next = p;
}
pre = p;
}
return 1;
}
void show(struct stu *head) {
struct stu *p;
p = head;
while(p != NULL) {
printf("%s %d\n",p->name,p->no);
p = p->next;
}
}
```
我对代码进行了如下修改:
1. 在 `myCreate` 函数中,将 `head` 的类型改为指向指针的指针 `struct stu **head`。这是因为我们要修改 `head` 的指向,如果直接传递 `struct stu *head`,那么在函数内部修改 `head` 的指向是无效的。
2. 在 `myCreate` 函数中,将 `p->no` 的判断条件改为 `p->no == 0`,因为 `p->no` 是一个整型变量,不能与 `NULL` 相比较。
3. 在 `myCreate` 函数中,将 `head` 的赋值改为 `*head = NULL`,因为 `head` 是指向指针的指针,需要使用 `*` 解引用,才能将 `NULL` 赋值给指针。
4. 在 `main` 函数中,将 `show(&head)` 改为 `show(head)`,因为 `head` 已经是一个指向结构体的指针了,不需要再取地址。
5. 在 `myCreate` 函数中,添加了一个 `pre` 指针,用于记录上一个结点的指针,以便将新结点插入到链表中。
6. 在 `show` 函数中,将 `*p=head->next` 改为 `p = head`,因为 `head` 已经是一个指向结构体的指针了,不需要再取地址。
阅读全文