程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> C++:復制容器(container)的元素至另一個容器

C++:復制容器(container)的元素至另一個容器

編輯:關於C++

C++復制容器(container)元素, 可以使用標准庫(STL)的copy()和copy_n()函數.

函數樣式: OutputIterator copy (InputIterator first, InputIterator last, OutputIterator result)

代碼:

/* 
 * main.cpp 
 * 
 *  Created on: 2014年6月17日 
 *      Author: Spike 
 */
     
#include <iostream>  
#include <algorithm>  
#include <iterator>  
#include <vector>  
     
using namespace std;  
     
int main (void)  
{  
    std::vector<int> vi = {1, 2, 3, 4, 0, 0, 0, 8, 9, 10};  
    std::vector<int> vb = {5, 6, 7};  
    std::vector<int>::iterator it = vi.begin()+4;  
    std::copy(vb.begin(), vb.end(), it);  
    std::copy(vi.begin(), vi.end(), std::ostream_iterator<int>(std::cout, " "));  
    std::cout << std::endl;  
    return 0;  
}

輸出:

1 2 3 4 5 6 7 8 9 10

作者:csdn博客 Spike_King

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved