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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。