(原創) 如何將array轉成std::vector? (使用vector.insert) (C/C++) (STL)

來源:互聯網
上載者:User

使用vector.insert將array轉vector,雖然也是一行完成,但不是那麼直觀,建議還是用constructor的方式將array轉std::vector。

 1/**//* 
 2(C) OOMusou 2006 http://oomusou.cnblogs.com
 3
 4Filename    : ArrayToVectorByInsert.cpp
 5Compiler    : Visual C++ 8.0
 6Description : Demo how to convert array to vector by vector.insert
 7Release     : 11/15/2006 1.0
 8              12/10/2006 2.0
 9*/
10#include <iostream>
11#include <vector>
12#include <algorithm>
13
14using namespace std;
15
16int main() {
17  int ia[] = {0, 1, 1, 2, 3, 5, 8, 13, 21, 55, 89};
18
19  vector<int> ivec;
20  // We specify the address of the first element of 
21  // the array as 2nd argument, and the address of 
22  // one past the last element as 3rd argument.
23  ivec.insert(ivec.end(), ia, ia + sizeof(ia)/sizeof(int));
24  copy(ivec.begin(), ivec.end(), ostream_iterator<int>(cout, "\n"));
25
26  return 0;
27}

See Also
(原創) 如何將array轉成std::vector? (使用constructor) (C/C++) (STL) 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.