std::list::reverse
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
void reverse(); |
||
在容器中的元素的顺序反转。没有引用或迭代器变得无效.
原文:
Reverses the order of the elements in the container. No references or iterators become invalidated.
目录 |
[编辑] 参数
(无)
[编辑] 返回值
(无)
[编辑] 为例
#include <iostream> #include <list> std::ostream& operator<<(std::ostream& ostr, const std::list<int>& list) { for (auto &i : list) { ostr << " " << i; } return ostr; } int main() { std::list<int> list = { 8,7,5,9,0,1,3,2,6,4 }; std::cout << "before: " << list << "\n"; list.sort(); std::cout << "ascending: " << list << "\n"; list.reverse(); std::cout << "descending: " << list << "\n"; }
输出:
before: 8 7 5 9 0 1 3 2 6 4 ascending: 0 1 2 3 4 5 6 7 8 9 descending: 9 8 7 6 5 4 3 2 1 0
[编辑] 复杂性
线性大小的容器
[编辑] 另请参阅
的元素进行排序 (公共成员函数) |