list::reverse()是C++ STL中的内置函数,用于反转列表容器。它反转了列表容器中元素的顺序。
用法:
list_name.reverse()
参数:此函数不接受任何参数。
返回值:此函数不返回任何值。它只是颠倒了与其一起使用的列表容器中元素的顺序。
以下示例程序旨在说明C++ STL中的list::reverse()函数:
// CPP program to illustrate the
// list::reverse() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Creating a list
list<int> demoList;
// Adding elements to the list
demoList.push_back(10);
demoList.push_back(20);
demoList.push_back(30);
demoList.push_back(40);
// Initial list:
cout << "Initial List: ";
for (auto itr = demoList.begin(); itr != demoList.end(); itr++)
cout << *itr << " ";
// reversing the list
demoList.reverse();
// List after reversing the order of elements
cout << "\n\nList after reversing: ";
for (auto itr = demoList.begin(); itr != demoList.end(); itr++)
cout << *itr << " ";
return 0;
}
输出:
Initial List: 10 20 30 40 List after reversing: 40 30 20 10
相关用法
- C++ list end()用法及代码示例
- C++ list merge()用法及代码示例
- C++ list emplace()用法及代码示例
- C++ list push_back()用法及代码示例
- C++ list back()用法及代码示例
- C++ list pop_back()用法及代码示例
- C++ list resize()用法及代码示例
- C++ list pop_front()用法及代码示例
- C++ list size()用法及代码示例
- C++ list max_size()用法及代码示例
- C++ list splice()用法及代码示例
- C++ list push_front()用法及代码示例
- C++ list front()用法及代码示例
- C++ list empty()用法及代码示例
- C++ list erase()用法及代码示例
注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 list reverse function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。