当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。