l->listsize=100是什么意思

 我来答
DoramiHe
2018-03-29 · 知道合伙人互联网行家
DoramiHe
知道合伙人互联网行家
采纳数:25332 获赞数:59543
2011年中山职业技术学院毕业,现担任毅衣公司京东小二

向TA提问 私信TA
展开全部
看来这个问题真的有点难.....我都搞了一个多钟头了我分为两个文件来做: ①:list.cpp:#include"list.h"
int main(void)
{
SqList la, lb;
int a=0, b=0;
cout << "输入la的长度:";
cin >> a;
cout << "输入lb的长度:";
cin >> b;
InitList(la, a);
InitList(lb, b);
ListInsert(la);
ListInsert(lb);
cout << "la:";
TraverseList(la);
cout << "lb:";
TraverseList(lb);
cout << "la与lb的并集lc:";
unionList(la, lb);
return 0;
} ②:list.h:#include<iostream>
using namespace std;
#ifndef LIST_H_
#define LIST_H_
#define LISTSIZE 100
typedef char DataType;//声明DataType类型
typedef struct SqList
{
DataType items[LISTSIZE]; //存放线性表数据
int length;
}LIST;//初始化空线性表
void InitList(LIST &L, int length)
{
L.length=length;
if(L.length>=LISTSIZE)//判表满
{
cout<<"线性表满溢"<<endl;
}
}//向线性表输入数据
int ListInsert(LIST &L)
{
cout << "依次输入线性表的数据:";
for(int j=0; j<L.length; j++)
{
cin >> L.items[j];
}
return 1;
}//遍历输出线性表
int TraverseList(LIST &L)
{
int i;
for(i=0;i<L.length;i++)
cout<<L.items[i]<<" ";
cout<<endl;
return 1;
}
//按元素值查找元素的位置
int LocateElem(LIST &L, DataType e)
{
int flag=0;
for(int i=0; i<L.length; i++)
{
if(L.items[i]==e)
{
flag=i+1;
}
}
return flag;
}//求两个线性表的并集
int unionList(LIST &L1, LIST &L2)
{
for(int i=0; i<L1.length; i++)
cout << L1.items[i] << " ";
for(int i=0; i<L2.length; i++)
{
if(!LocateElem(L1, L2.items[i]))
{
cout << L2.items[i] << " ";
}
}
return 0;
}
/**/
#endif /* LIST_H_ */
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式