感动烧鹅

文章
4
资源
0
加入时间
3年0月21天

数据结构:线性表基本运算在顺序表上的实现

#include"SqlList.h"#include<stdio.h>void main(){ int i;ElemType e; SqList L; InitList(L);//初始化 ElemType a[]={1,5,4};// CreatList(L,a,3);//整体创建数据表 printf("插入后线性表:");DispList(L); InsElem(L,2,4); //插入数据 InsElem(L,3,5