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


C++ list crbegin()、crend()用法及代碼示例


  1. list::crbegin()是c ++ STL中的內置函數,它返回一個常量反向迭代器,該迭代器指向列表的最後一個元素,即容器的反向開始。元素不能修改或更改,因為迭代器是一個常量。

    用法:

    list_name.crbegin()

    參數:該函數不接受任何參數。

    返回值:它返回一個隨機訪問反向迭代器,該迭代器指向列表的反向開始。


    以下示例程序旨在說明上述函數:

    // C++ program to illustrate the 
    // list::crbegin() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
        // declaration of the list 
        list<int> lis = { 10, 20, 30, 40, 50 }; 
      
        // prints the last element 
        cout << "The last element is:" << *lis.crbegin(); 
        cout << "\nList:"; 
      
        for (auto it = lis.crbegin(); it != lis.crend(); ++it) 
            cout << *it << " "; 
      
        return 0; 
    }
    輸出:
    The last element is:50
    List:50 40 30 20 10
    
  2. list::crend()是C++ STL中的內置函數,它返回一個常數反向迭代器,該迭代器指向列表中第一個元素(即列表的末尾)之前的理論元素。元素不能修改或更改,因為迭代器是一個常量。

    用法:

    list_name.crend()
    

    參數:該函數不接受任何參數。

    返回值:它返回一個常數隨機反向迭代器,該迭代器指向列表的反向端點。

    以下示例程序旨在說明上述函數:

    // C++ program to illustrate the 
    // list::crend() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
        // declaration of the list 
        list<int> lis = { 7, 6, 5, 4, 3, 2 }; 
      
        cout << "List:" << endl; 
      
        for (auto it = lis.crbegin(); it != lis.crend(); ++it) 
            cout << *it << " "; 
      
        return 0; 
    }
    輸出:
    List:
    2 3 4 5 6 7
    


相關用法


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