码迷,mamicode.com
首页 > 编程语言 > 详细

c++ 容器反转

时间:2019-05-20 00:47:27      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:algo   tor   names   ace   namespace   iter   example   bsp   iterator   

 

// reverse algorithm example
#include <iostream>     // std::cout
#include <algorithm>    // std::reverse
#include <vector>       // std::vector
using namespace std; 
int main () {
  vector<int> myvector;

  // set some values:
  for (int i=1; i<10; ++i) myvector.push_back(i);   // 1 2 3 4 5 6 7 8 9

  reverse(myvector.begin(),myvector.end());    // 9 8 7 6 5 4 3 2 1

  // print out content:
  cout << "myvector contains:";
  for (vector<int>::iterator it=myvector.begin(); it!=myvector.end(); ++it)
    cout <<   << *it;
  cout << \n;

  return 0;
}

 

c++ 容器反转

标签:algo   tor   names   ace   namespace   iter   example   bsp   iterator   

原文地址:https://www.cnblogs.com/sea-stream/p/10891724.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!