数据结构 构造一个空的链表.我写了个,大家看下,然后帮我写一个好的.我好参考..谢谢了...
#include<stdio.h>#include<stdlib.h>
#define SIZE 30
struct node
{
char name[10];
int num;
float score;
struct node *next;
}node,*p;
InitList()
{
if((node.next=malloc(SIZE))==NULL)
printf("malloc error");
return(node);
}