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

c++ vector反转reverse

时间:2014-07-26 16:59:21      阅读:394      评论:0      收藏:0      [点我收藏+]

标签:blog   http   strong   io   art   cti   div   ar   

  1. template <class BidirectionalIterator>  
  2.   void reverse ( BidirectionalIterator first, BidirectionalIterator last);  

 

  1. 如果不是改变原来的容器,而是翻转之后放在新容器里面,直接用reverse_copy ( BidirectionalIterator first,  
  2.                                 BidirectionalIterator last, OutputIterator result );  

 

    1. std::reverse(trianglePoints.begin(), trianglePoints.end()); 

c++ vector反转reverse,布布扣,bubuko.com

c++ vector反转reverse

标签:blog   http   strong   io   art   cti   div   ar   

原文地址:http://www.cnblogs.com/zhaoxinshanwei/p/3870163.html

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