线性表的基本操作和实现

时间:2014-05-28 05:34:41
【文件属性】:

文件名称:线性表的基本操作和实现

文件大小:2KB

文件格式:ZIP

更新时间:2014-05-28 05:34:41

线性表 数据结构 线性表操作

#include #include #include #include #define MAXSIZE 100 typedef struct { int data[MAXSIZE]; int length; }Seqlist; void SeqlistInit(Seqlist *&L) // 线性表的初始化 { L=(Seqlist *)malloc(sizeof(Seqlist)); L->length=0; } void Creatlist(Seqlist *&L,int a[],int n) //建立顺序表 { int i; for(i=0;idata[i]=a[i]; L->length=n; }


【文件预览】:
线性表.txt

网友评论