📜  在C++ STL中列出crbegin()和crend()函数

📅  最后修改于: 2021-05-30 05:26:10             🧑  作者: Mango

  1. list :: crbegin()是C++ STL中的内置函数,它返回一个常量反向迭代器,该迭代器指向列表的最后一个元素,即容器的反向开始。元素不能修改或更改,因为迭代器是一个常量。

    句法:

    list_name.crbegin()

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

    返回值:它返回一个随机访问反向迭代器,该迭代器指向列表的反向开始。

    下面的程序说明了上述函数:

    // C++ program to illustrate the
    // list::crbegin() function
    #include 
    using namespace std;
      
    int main()
    {
        // declaration of the list
        list 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 
    using namespace std;
      
    int main()
    {
        // declaration of the list
        list 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
    
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”