作业 iterator,set_union 一些奇怪的语法

Posted COLORFUL

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了作业 iterator,set_union 一些奇怪的语法相关的知识,希望对你有一定的参考价值。

 

关于set_union系列函数(需要有序)的第五个参数,output iterator。

网上都是用inserter(c,c.begin()) 但vs会编译报错

所以改成了back_inserter,(不能用set存)

//发现auto可以输出数组。。。

vector<int> c1, c2, c;
    set_difference(aa.begin(), aa.end(), bb.begin(), bb.end(), back_inserter(c1));
    set_difference(bb.begin(), bb.end(), aa.begin(), aa.end(),back_inserter(c2));
    set_union(c1.begin(), c1.end(), c2.begin(), c2.end(), back_inserter(c));

    for (auto t : c) printf("%d ", t); scanf("%d",&a); system("pause");

 

以上是关于作业 iterator,set_union 一些奇怪的语法的主要内容,如果未能解决你的问题,请参考以下文章

includes,set_union,set_intersection,set_difference

一些奇奇妙妙的技巧

UITableView 的一些奇淫技巧1

作业4

Go Iterator 从 Bigquery 读取 100 万行,比 Java 或 kotlin 慢 10 倍?

关于 css linear-gradient 渐变的一些奇淫技巧与渲染机制的一些讲解说明