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


C++ list rbegin()、rend()用法及代码示例


  1. list::rbegin()是C++ STL中的内置函数,它返回一个反向迭代器,该迭代器指向列表的最后一个元素。

    用法:

    list_name.rbegin()

    参数:该函数不接受任何参数。

    返回值:它返回一个反向迭代器,该迭代器指向列表的最后一个元素。


    以下示例程序旨在说明上述函数:

    // C++ program to illustrate the 
    // list::rbegin() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
        list<int> lis = { 10, 20, 30, 40, 50 }; 
      
        cout << "The list in reverse order:"; 
      
        for (auto it = lis.rbegin(); it != lis.rend(); ++it) 
            cout << *it << " "; 
      
        return 0; 
    }
    输出:
    The list in reverse order:50 40 30 20 10
    
  2. list::rend()是C++ STL中的内置函数,它返回一个反向迭代器,该迭代器指向列表开头之前的位置。

    用法:

    list_name.rend()

    参数:该函数不接受任何参数。

    返回值:它返回一个反向迭代器,该迭代器指向列表开头之前的位置。

    以下示例程序旨在说明上述函数:

    // C++ program to illustrate the 
    // list::rbegin() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
        list<int> lis = { 10, 20, 30, 40, 50 }; 
      
        cout << "The list in reverse order:"; 
      
        for (auto it = lis.rbegin(); it != lis.rend(); ++it) 
            cout << *it << " "; 
      
        return 0; 
    }
    输出:
    The list in reverse order:50 40 30 20 10
    


相关用法


注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 list rbegin() and rend() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。