码迷,mamicode.com
首页 > 其他好文 > 详细

A、B两个整数集合,设计一个算法求他们的交集

时间:2014-05-20 14:59:37      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:笔试   数据结构   算法   

代码留作记录,本人水平有限,看了别人的解法真是自愧不如。

关于此题的详细探讨可以参考:http://blog.csdn.net/thebestdavid/article/details/12056293

/*A、B两个整数集合,设计一个算法求他们的交集,尽可能的高效。*/
#include <iostream>
#include <cstring>
#include <set>
#define M 8
#define N 5
using namespace std;
int main(){
    int A[] = {-1, 2 ,39 ,10, 6, 11, 188, 10};
    int B[] = {39 ,8 , 10, 6, -1};
    set<int> sa;
    set<int> sb;
    for(int i=0;i<M;i++){
        sa.insert(A[i]);
    }
    set<int>::iterator it;
    for(int i=0;i<N;i++){
        if(sa.find(B[i])!=sa.end()){
            sb.insert(B[i]);
        }
    }
    for(set<int>::iterator it=sb.begin();it!=sb.end();it++){
        cout<<*it<<" ";
    }
    cout<<endl;
    return 0;
}

A、B两个整数集合,设计一个算法求他们的交集,布布扣,bubuko.com

A、B两个整数集合,设计一个算法求他们的交集

标签:笔试   数据结构   算法   

原文地址:http://blog.csdn.net/dutsoft/article/details/26284351

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!