#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define Maxsize 50
typedef struct
{
char fenlei[10];
}movie;
typedef struct
{
int num;
char name[20];
char director[20];
char language[20];
int time;
double score;
char fenlei1[20];
char pinglun[100];
int dianzan;
}info;
typedef struct
{
movie data[Maxsize];
int length;
}SqList;
void InitList(SqList *&S)
{
S=(SqList *)malloc(sizeof(SqList));
S->length=0;
};
struct LNode
{
info data;
struct LNode *next;
};
要问什么?