程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C++打印任意順序容器(sequential container)的內容

C++打印任意順序容器(sequential container)的內容

編輯:關於C語言

做相當於合並下面三個函數的工作。

void PrintStringVector(vector<string> vec)
{
    for (auto i : vec)
    {
        cout << i << ' ';
    }
    cout << endl;
}
void PrintIntVector(vector<int> vec)
{
    for (auto i : vec)
    {
        cout << i << ' ';
    }
    cout << endl;
}
void PrintIntList(list<int> lst)
{
    for (auto i : lst)
    {
        cout << i << ' ';
    }
    cout << endl;
}

方案一:

template<typename Container>
void PrintContainer(Container container)
{
    for (auto i : container)
    {
        cout << i << ' ';
    }
    cout << endl;
}

方案二:

int main()
{
    list<int> lst = { 1, 3, 5, 4, 9, 6, 3};
    copy(lst.cbegin(), lst.cend(), ostream_iterator<int>(cout, " "));
    cout << endl;
    return 0;
}

方案三:用boost的lambda)

#include <list>
#include <iostream>
#include <boost/lambda/lambda.hpp>
using namespace std;
int main()
{
    list<int> lst = { 1, 3, 5, 4, 9, 6, 3};
    for_each (lst.cbegin(), lst.cend(), cout << boost::lambda::_1 << ' ');
    cout << endl;
    return 0;
}

方案四:用C++11的lambda)

for_each(lst.cbegin(), lst.cend(), [](int i){ cout << i << ' '; });


***


本文出自 “walker” 博客,請務必保留此出處http://walkerqt.blog.51cto.com/1310630/1276955

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