當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ list reverse用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 list reverse function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。