码迷,mamicode.com
首页 > 其他好文 > 详细

【STL】reverse函数用法

时间:2017-04-21 20:00:46      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:函数参数   int   ace   last   序列   用法   包括   返回   范围   

reverse函数的功能是反转排序一个容器中指定元素的内容。

函数参数:reverse(first,last)

其中firstlast分别指向被反转序列中初始及末尾位置的双向迭代器(Bidirectional iterators)。这个范围即 [first,last) ,包括 first 到 last 间的所有元素,包括 first 指向的元素,但不包括 last 指向的元素。

无返回值

示例:

#include <iostream>
#include <list>
 
namespace ClassFoo{
void ListReverseExample1() {
    std::list<int> foo;
 
    for (int i=1; i<10; ++i) foo.push_back(i);
 
    foo.reverse();
 
    std::cout << "foo contains:";
    for (std::list<int>::iterator it=foo.begin();
        it!=foo.end(); ++it)
        std::cout << ‘ ‘ << *it;
 
    std::cout << ‘\n‘;
}
}
int main ()
{
    ClassFoo::ListReverseExample1();
    return 0;
}

 输出  foo contains:9 8 7 6 5 4 3 2 1

复杂度

O(n),n 为 last - first.。

数据争用相关

范围 [first,last) 中的所有元素都被修改过。

异常安全性相关

如果元素交换(Swap)或操作某个迭代器抛异常,该函数才会抛异常。

 

【STL】reverse函数用法

标签:函数参数   int   ace   last   序列   用法   包括   返回   范围   

原文地址:http://www.cnblogs.com/Patrick-L/p/6745235.html

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