#include "iostream.h"
#include "stdlib.h"
#include "math.h"
#define ElemType int
#define OK 1
#define ERROR 0
#define N 6
typedef struct LNode
{
ElemType data;
struct LNode *next;
int length;
}LNode,*LinkList;
LNode *creat_L();
void out_L(LNode *L);
void insert_L(LNode *L, ...
评论排行榜