#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int main(){
int n,m;
while(cin >> m >> n){
int a[120] = {0},b[120] = {0},c[120] = {0};
if(m == 0 && n == 0){//停止运行
break;
}
int i,j,x;
for(i = 0; i < m; i++){//数组赋值
cin >> x;
a[i] = x;
}
for(j = 0; j < n; j++){//数组赋值
cin >> x;
b[j] = x;
}
int t = 0,y = 0;
for(i = 0; i < m; i++){//比较A中元素是否在B中
for(j = 0; j < n; j++){
if(a[i] == b[j])t = 1;
}
if(t == 0){//如果A中元素不在B中,把该值赋给c,并使长度加一
c[y] = a[i];
y++;
}
t = 0;
}
sort(c,c+y);//排序c中元素
if(y == 0)//A是B的子集
cout << "NULL";
else//逐位输出
for(i = 0; i < y; i++)cout << c[i] << " ";
cout << endl;
}
return 0;
}
杭电oj 2034
最新推荐文章于 2024-02-29 12:21:11 发布
本文档展示了如何使用C++编程语言实现一个功能,通过输入两个整数数组A和B,找出A中不包含在B中的元素,并对这些元素进行排序后输出。程序首先读取数组元素,然后通过双重循环对比两个数组,将不匹配的元素存入数组C并排序显示。
摘要由CSDN通过智能技术生成