有一链式结构,定义如下 : struct stu{ char name[20]; int no; struct stu *next; }; 创建一个函数create(),实现无头结点的链表,有m个结点,函数的返回值为链表的头指针。
时间: 2024-03-17 21:46:36 浏览: 96
好的,我来给你写一个实现 create() 函数的代码:
```c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct stu{
char name[20];
int no;
struct stu *next;
};
struct stu* create(int m){
struct stu *head, *p, *q;
int i;
head = NULL;
for(i=0; i<m; i++){
p = (struct stu*)malloc(sizeof(struct stu));
printf("请输入第%d个学生的姓名和学号:", i+1);
scanf("%s %d", p->name, &p->no);
p->next = NULL;
if(head == NULL){
head = p;
}else{
q->next = p;
}
q = p;
}
return head;
}
int main(){
int m;
struct stu *p;
printf("请输入学生的个数:");
scanf("%d", &m);
p = create(m);
printf("学生的信息如下:\n");
while(p != NULL){
printf("%s %d\n", p->name, p->no);
p = p->next;
}
return 0;
}
```
这是一个基本的链表创建函数,通过循环输入学生的姓名和学号,然后将其加入链表的尾部,最后返回链表的头指针。在主函数中,我们可以使用返回的头指针遍历整个链表并输出每个学生的信息。注意:这里的链表是无头结点的,头指针就是链表的第一个结点的指针。
阅读全文