想学习一下链表,求个例题学习一下,要详细,谢谢啦
想学习一下链表,求个例题学习一下,要详细,谢谢啦,想知道,如何创建链表。和往链表里面输入数据#include<stdio.h>
#include<malloc.h>
typedef struct student
{
char name[10];
struct student *next;
}s;
s chuangjian(s *p1)
{
s *head;
p1=(s*)malloc(sizeof(s));
p1=head=NULL;
}
[此贴子已经被作者于2017-1-22 17:25编辑过]