有两个向量: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初始化列表语法,我以前用来节省一些空间)
答案 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 + 1
与collA.cbegin() + 4
相同并且指向5
。