第三周项目3 求集合并集

来源:互联网 发布:地图区域划分软件 编辑:程序博客网 时间:2024/06/11 19:20
  1. /*  
  2. *Copyright (c) 2017,烟台大学计算机与控制工程学院  
  3. *All rights reserved.  
  4. *文件名称:第三周项目3  求集合并集  
  5. *作    者:葛惠文  
  6. *完成日期:2017年9月19日  
  7. *版 本 号:v1.0  
  8. *  问题描述:假设有两个集合 A 和 B 分别用两个线性表 LA 和 LB 表示,  
  9.     即线性表中的数据元素即为集合中的成员。设计算法,用函数
  10.     unionList(List LA, List LB, List &LC )函数实现该算法,  
  11.     求一个新的集合C=A∪B,即将两个集合的并集放在线性表LC中。  
  12. */  



改程序需要用到以前编译的list.h文件和list.cpp文件,所以可以再工程中自行添加。
#include "list.h"#include <stdio.h>void unionList(SqList *LA, SqList *LB, SqList *&LC){    int lena,i;    ElemType e;    InitList(LC);    for (i=1; i<=ListLength(LA); i++) //将LA的所有元素插入到Lc中    {        GetElem(LA,i,e);        ListInsert(LC,i,e);    }    lena=ListLength(LA);         //求线性表LA的长度    for (i=1; i<=ListLength(LB); i++)    {        GetElem(LB,i,e);         //取LB中第i个数据元素赋给e        if (!LocateElem(LA,e)) //LA中不存在和e相同者,插入到LC中            ListInsert(LC,++lena,e);    }}//用main写测试代码int main(){    SqList *sq_a, *sq_b, *sq_c;    ElemType a[6]= {5,8,7,2,4,9};    CreateList(sq_a, a, 6);    printf("LA: ");    DispList(sq_a);    ElemType b[6]= {2,3,8,6,0};    CreateList(sq_b, b, 5);    printf("LB: ");    DispList(sq_b);    unionList(sq_a, sq_b, sq_c);    printf("LC: ");    DispList(sq_c);    return 0;}


原创粉丝点击