Register__ 2022-02-01 22:49 采纳率: 89.5%
浏览 70
已结题

C++ algorithm文件函数报错

C++ algorithm 文件中 有个 set_intersection 函数 ,用来找两个有序容器中的交集,我调用的时候除了问题
Vscode (g++)

img

img

visual studio 2019

img

img

这咋回事?

  • 写回答

2条回答 默认 最新

  • _GX_ 2022-02-02 00:00
    关注

    set_intersection()最后一个参数是输出迭代器

    #include <iostream>
    #include <vector>
    #include <algorithm>
    #include <iterator>
    
    using namespace std;
    int main()
    {
        vector<int> v1, v2, v3;
        for (int i = 0; i < 5; i++)
        {
            v1.push_back(i);
            v2.push_back(i + 3);
        }
        cout << "v1: ";
        copy(v1.begin(), v1.end(), ostream_iterator<int>(cout, " "));
        cout << "\nv2: ";
        copy(v2.begin(), v2.end(), ostream_iterator<int>(cout, " "));
        cout << "\nset_intersection(v1,v2): ";
        set_intersection(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(v3));
        copy(v3.begin(), v3.end(), ostream_iterator<int>(cout, " "));
        return 0;
    }
    
    $ g++ -Wall main.cpp
    $ ./a.out
    v1: 0 1 2 3 4 
    v2: 3 4 5 6 7 
    set_intersection(v1,v2): 3 4
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 3月26日
  • 已采纳回答 3月18日
  • 创建了问题 2月1日

悬赏问题

  • ¥15 用verilog实现tanh函数和softplus函数
  • ¥15 求京东批量付款能替代天诚
  • ¥15 slaris 系统断电后,重新开机后一直自动重启
  • ¥15 谁能帮我看看这拒稿理由啥意思啊阿啊
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含