概述
/*
Copyright (c)2015,烟台大学计算机与控制工程学院
All rights reserved.
文件名称:项目3--求集合并集.cpp
作 者:马鸣挥
完成日期:2015年11月23日
版 本 号:v1.0
问题描述:假设有两个集合 A 和 B 分别用两个线性表 LA 和 LB 表示,
即线性表中的数据元素即为集合中的成员。
设计算法,用函数unionList(List LA, List LB, List &LC )函数实现该算法,
求一个新的集合C=A∪B,即将两个集合的并集放在线性表LC中。
输入描述: 若干数据 。
程序输出: LA的集合数据、LB的集合数据、LC的集合数据。
*/
#include<stdio.h>
#include<malloc.h>
typedef struct
{
int data[50];
int length;
}sqlist;
void creatlist(sqlist *&,int a[],int );
void DispList(sqlist *);
void unionlist(sqlist *,sqlist *,sqlist *&);
int main()
{
sqlist *sqa,*sqb,*sqc;
int a[6]= {5,8,7,2,4,9};
creatlist(sqa,a,6);
printf("LA:");
DispList(sqa);
int b[6]= {2,3,8,6,0};
creatlist(sqb,b,6);
printf("LB:");
DispList(sqb);
unionlist(sqa,sqb,sqc);
printf("LC:");
DispList(sqc);
}
void creatlist(sqlist *&l,int a[],int n)
{
int i;
l=(sqlist *)malloc(sizeof(sqlist));
for(i=0;i<n;i++)
{
l->data[i]=a[i];
}
l->length=n;
}
void DispList(sqlist *l)
{
int i;
for(i=0;i<l->length;i++)
{
printf("%d ",l->data[i]);
}
printf("n");
}
void unionlist(sqlist *a,sqlist *b,sqlist *&c)
{
c=(sqlist *)malloc(sizeof(sqlist));
int i,j=0,k=0,l=0;
c->length=0;
for(i=0;i<a->length;i++)
{
c->data[i]=a->data[i];
c->length++;
}
while(j<b->length)
{
while(b->data[j]!=a->data[k]&&k<b->length)
{
k++;
}
if(k==b->length)
{
c->data[i]=b->data[j];
i++;
c->length++;
}
k=0;
j++;
}
}
最后
以上就是美好猎豹为你收集整理的项目3--求集合并集的全部内容,希望文章能够帮你解决项目3--求集合并集所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复