线性表的顺序存储实现
#include<stdio.h>
#include<stdlib.h>
#define MAXSIZE 100
#define ERROR -1
typedef int ElementType;
typedef int Position;
typedef struct LNode*List;
struct LNode{
ElementType Data[MAXSIZE];
Position Last;
};
List MakeEmpty()
{
List L;
L=(List)malloc(sizeof