解题思路:
注意事项:
参考代码:
#include<bits/stdc++.h> using namespace std; typedef long long ll; const ll MAX=987654321; ll n,m; int main() { set<int> a,b; cin>>n>>m; while(n--) { int t; cin>>t; a.insert(t); } while(m--) { int t; cin>>t; if(a.find(t)!=a.end()) b.insert(t); } set<int>::iterator it; for(it=b.begin();it!=b.end();it++) cout<<*it<<" "; return 0; }
0.0分
0 人评分
Pascal三角 (C语言代码)浏览:1252 |
字符串的输入输出处理 (C语言代码)浏览:1019 |
C语言训练-大、小写问题 (C语言代码)浏览:649 |
WU-输入输出格式练习 (C++代码)浏览:1133 |
C语言训练-自由落体问题 (C语言代码)浏览:650 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:537 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:676 |
出圈】指针malloc版浏览:377 |
企业奖金发放 (C语言代码)浏览:2462 |
小O的图案 (C语言代码)浏览:979 |