第三周项目3--求集合并集

问题及代码:

  1. /*  
  2. * Copyright (c)2016,烟台大学计算机与控制工程学院  
  3. * All rights reserved.  
  4. * 文件名称:项目3.cpp  
  5. * 作    者:陈哲 
  6. * 完成日期:2016年9月17日  
  7. * 版 本 号:v1.0   
  8. *问题描述:假设有两个集合 A 和 B 分别用两个线性表 LA 和 LB 表示, 
  9.            即线性表中的数据元素即为集合中的成员。设计算法,用函数 
  10.            unionList(List LA, List LB,         List &LC )函数 
  11.            实现该算法,求一个新的集合C=A∪B,即将两个集合的并集放 
  12.           在线性表LC中。   
  13. *输入描述:每个集合    
  14. *程序输出:合并后的集合   
  15. */    

头文件:list.h

[cpp]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. #define MaxSize 50    
  2. #include <stdio.h>    
  3. #include <malloc.h>    
  4. typedef int ElemType;    
  5. typedef struct    
  6. {    
  7.     ElemType data[MaxSize];    
  8.     int length;    
  9. } SqList;    
  10. void unionList(SqList *LA, SqList *LB, SqList *&LC);//求合集    
  11. void CreateList(SqList *&L, ElemType a[], int n);//用数组创建线性表    
  12. void InitList(SqList *&L);//初始化线性表InitList(L)    
  13. void DestroyList(SqList *&L);//销毁线性表DestroyList(L)    
  14. bool ListEmpty(SqList *L);//判定是否为空表ListEmpty(L)    
  15. int ListLength(SqList *L);//求线性表的长度ListLength(L)    
  16. void DispList(SqList *L);//输出线性表DispList(L)    
  17. bool GetElem(SqList *L,int i,ElemType &e);//求某个数据元素值GetElem(L,i,e)    
  18. int LocateElem(SqList *L, ElemType e);//按元素值查找LocateElem(L,e)    
  19. bool ListInsert(SqList *&L,int i,ElemType e);//插入数据元素ListInsert(L,i,e)    
  20. bool ListDelete(SqList *&L,int i,ElemType &e);//删除数据元素ListDelete(L,i,e)  
源文件:list.cpp

[cpp]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. #include "list.h"    
  2.     
  3. //求合集    
  4. void unionList(SqList *LA, SqList *LB, SqList *&LC)    
  5. {    
  6.     int lena,i;    
  7.     ElemType e;    
  8.     InitList(LC);    
  9.     for (i=1; i<=ListLength(LA); i++) //将LA的所有元素插入到Lc中    
  10.     {    
  11.         GetElem(LA,i,e);    
  12.         ListInsert(LC,i,e);    
  13.     }    
  14.     lena=ListLength(LA);         //求线性表LA的长度    
  15.     for (i=1; i<=ListLength(LB); i++)    
  16.     {    
  17.         GetElem(LB,i,e);         //取LB中第i个数据元素赋给e    
  18.         if (!LocateElem(LA,e)) //LA中不存在和e相同者,插入到LC中    
  19.             ListInsert(LC,++lena,e);    
  20.     }    
  21. }    
  22.     
  23. //以下为算法库功能函数    
  24. //用数组创建线性表    
  25. void CreateList(SqList *&L, ElemType a[], int n)    
  26. {    
  27.     int i;    
  28.     L=(SqList *)malloc(sizeof(SqList));    
  29.     for (i=0; i<n; i++)    
  30.         L->data[i]=a[i];    
  31.     L->length=n;    
  32. }    
  33. //初始化线性表InitList(L)    
  34. void InitList(SqList *&L)   //引用型指针    
  35. {    
  36.     L=(SqList *)malloc(sizeof(SqList));    
  37.     //分配存放线性表的空间    
  38.     L->length=0;    
  39. }    
  40. //销毁线性表DestroyList(L)    
  41. void DestroyList(SqList *&L)    
  42. {    
  43.     L=(SqList *)malloc(sizeof(SqList));    
  44.     free(L);    
  45. }    
  46. //判定是否为空表ListEmpty(L)    
  47. bool ListEmpty(SqList *L)    
  48. {    
  49.     return(L->length==0);    
  50. }    
  51. //求线性表的长度ListLength(L)    
  52. int ListLength(SqList *L)    
  53. {    
  54.     return(L->length);    
  55. }    
  56. //输出线性表DispList(L)    
  57. void DispList(SqList *L)    
  58. {    
  59.     int i;    
  60.     if (ListEmpty(L)) return;    
  61.     for (i=0; i<L->length; i++)    
  62.         printf("%d ",L->data[i]);    
  63.     printf("\n");    
  64. }    
  65. //求某个数据元素值GetElem(L,i,e)    
  66. bool GetElem(SqList *L,int i,ElemType &e)    
  67. {    
  68.     if (i<1 || i>L->length)  return false;    
  69.     e=L->data[i-1];    
  70.     return true;    
  71. }    
  72. //按元素值查找LocateElem(L,e)    
  73. int LocateElem(SqList *L, ElemType e)    
  74. {    
  75.     int i=0;    
  76.     while (i<L->length && L->data[i]!=e) i++;    
  77.     if (i>=L->length)  return 0;    
  78.     else  return i+1;    
  79. }    
  80. //插入数据元素ListInsert(L,i,e)    
  81. bool ListInsert(SqList *&L,int i,ElemType e)    
  82. {    
  83.     int j;    
  84.     if (i<1 || i>L->length+1)    
  85.         return false;   //参数错误时返回false    
  86.     i--;            //将顺序表逻辑序号转化为物理序号    
  87.     for (j=L->length; j>i; j--) //将data[i..n]元素后移一个位置    
  88.         L->data[j]=L->data[j-1];    
  89.     L->data[i]=e;           //插入元素e    
  90.     L->length++;            //顺序表长度增1    
  91.     return true;            //成功插入返回true    
  92. }    
  93. //删除数据元素ListDelete(L,i,e)    
  94. bool ListDelete(SqList *&L,int i,ElemType &e)    
  95. {    
  96.     int j;    
  97.     if (i<1 || i>L->length)  //参数错误时返回false    
  98.         return false;    
  99.     i--;        //将顺序表逻辑序号转化为物理序号    
  100.     e=L->data[i];    
  101.     for (j=i; j<L->length-1; j++) //将data[i..n-1]元素前移    
  102.         L->data[j]=L->data[j+1];    
  103.     L->length--;              //顺序表长度减1    
  104.     return true;              //成功删除返回true    
  105. }    
源文件:main.cpp

[cpp]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. #include "list.h"    
  2.     
  3. //用main写测试代码    
  4. int main()    
  5. {    
  6.     SqList *sq_a, *sq_b, *sq_c;    
  7.     ElemType a[6]= {5,8,7,2,4,9};    
  8.     CreateList(sq_a, a, 6);    
  9.     printf("LA: ");    
  10.     DispList(sq_a);    
  11.     
  12.     ElemType b[6]= {2,3,8,6,0};    
  13.     CreateList(sq_b, b, 5);    
  14.     printf("LB: ");    
  15.     DispList(sq_b);    
  16.     unionList(sq_a, sq_b, sq_c);    
  17.     printf("LC: ");    
  18.     DispList(sq_c);    
  19.     return 0;    
  20. }    
运行结果:


知识点总结:

充分利用算法库解决实际问题。

学习心得:

通过对算法库的具体实践,更加深刻的了解了算法库的应用。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值