摘要:
copy:Copy函数原型:标头: OutputIterator copy(InputIterator begin,InputIterator end,outputIterator Result)返回的结果为:OutputIterator容器的Result到Result+(end-begin)位置被InputIterator容器begin到end位置的数据覆盖。[begin,end)#include #include #include using namespace std;void main(){ vector vec1,vec2; for(int i=0;i::iterator ite.. 阅读全文