使用STL std :: merge()将向量的两个部分合并到另一个向量中

时间:2013-10-31 04:40:12

标签: c++ c++11 stl

有两个向量:std::vector<int> collA{2,4,6,3,5,7}&amp; std::vector<int> collB(collA.size()),我正在尝试将collA的左半部分(包含偶数)和collA的右侧(包含奇数)合并到collB中:

std::merge(collA.cbegin(), std::next(collA.cbegin(), collA.size()/2 + 1), // left source 
    std::next(collA.cbegin(), collA.size()/2), collA.cend(),  // right source
    collB.begin()); // Output 

但是,std::merge()在某处失败,Visual Studio 2012会出现以下错误:

 ---------------------------
Microsoft Visual C++ Runtime Library
---------------------------
Debug Assertion Failed!

Program: C:\Windows\system32\MSVCP110D.dll
File: c:\program files (x86)\microsoft visual studio 11.0\vc\include\algorithm
Line: 3102

Expression: sequence not ordered

For information on how your program can cause an assertion
failure, see the Visual C++ documentation on asserts.

两个输入范围都已排序,为什么我会收到此错误? (注意:VS2012不支持C ++ 11初始化列表语法,我以前用来节省一些空间)

1 个答案:

答案 0 :(得分:1)

  

两个输入范围都已排序

不,这不是真的。您可以使用

进行检查
std::vector<int> collA{2,4,6,3,5,7};

std::copy(collA.cbegin(), std::next(collA.cbegin(), collA.size()/2 + 1),
            std::ostream_iterator<int>(std::cout, " "));
std::cout << std::endl;
std::copy(std::next(collA.cbegin(), collA.size()/2), collA.cend(),
            std::ostream_iterator<int>(std::cout, " "));

输出:

2 4 6 3 
3 5 7 

您必须更改第一个序列的最后一个迭代器:

std::next(collA.cbegin(), collA.size()/2)
//                                     no + 1 here

因为collA的尺寸为6,而collA.cbegin() + collA.size() / 2 + 1collA.cbegin() + 4相同并且指向5