利用线性表中的顺序结构简单实现集合的交并补运算
//利用顺序表实现集合的运算#include<cstdio>#include<iostream>#include<stdbool.h>#define MAXSIZE 10//最大元素个数设置为10个using namespace std;typedef struct{ int *elem; int ListLength; ...