数据结构-实验一顺序表的合并
#include<iostream>
#include <cstdlib>
using namespace std;
typedef struct //定义顺序表
{
int *elem;
int length;
}SqList;
void InitList_Sq(SqList &L,int n) //创建顺序表
{
L.elem=new int(n);
if(!L.elem)exit(-2);
L.length=0;
}
voi
原创
2021-07-26 21:31:47 ·
1296 阅读 ·
0 评论