不懂,麻烦讲解一下?
#include "stdafx.h"#include "stdio.h"
#include "string.h"
#include "stdlib.h"
#include "malloc.h"
#define OK 1
#define Error -1
#define OVERFLOW 0
#define LIST_INIT_SIZE 100
#define LISTINCREMENT 10
typedef int ElemType;
typedef int Status;
typedef struct LNode
{
ElemType *elem;//这行代码是什么意思啊?书上面写的是存储空间基址,为什么是个指针类型啊?
ElemType *newbase;
int length;
int listsize;
}SqList;