📌  相关文章
📜  C++ STL中的array :: rbegin()和array :: rend()

📅  最后修改于: 2021-05-30 07:55:13             🧑  作者: Mango

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

    句法:

    array_name.rbegin()

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

    返回值:该函数返回一个反向迭代器,指向容器中的最后一个元素。

    程序演示array :: rbegin()方法:

    程序1:

    // CPP program to illustrate
    // the array::rbegin() function
    #include 
    using namespace std;
      
    int main()
    {
        // array initialisation
        array arr = { 1, 5, 2, 4, 7 };
      
        // prints the last element
        cout << "The last element is " << *(arr.rbegin()) << endl;
      
        // prints all the elements
        cout << "The array elements in reverse order are:\n";
        for (auto it = arr.rbegin(); it != arr.rend(); it++)
            cout << *it << " ";
      
        return 0;
    }
    
    输出:
    The last element is 7
    The array elements in reverse order are:
    7 4 2 5 1
    
  2. array :: rend()是C++ STL中的内置函数,它返回一个反向迭代器,指向数组容器中第一个元素之前的理论元素。

    句法:

    array_name.rend()

    参数:该函数不带任何参数。

    返回值:该函数返回一个反向迭代器,该迭代器指向数组容器中第一个元素之前的理论元素。

    程序来演示array :: rend()方法:

    程序1:

    // CPP program to illustrate
    // the array::rend() function
    #include 
    using namespace std;
      
    int main()
    {
        array arr = { 1, 5, 2, 4, 7 };
      
        // prints all the elements
        cout << "The array elements in reverse order are:\n";
        for (auto it = arr.rbegin(); it != arr.rend(); it++)
            cout << *it << " ";
        return 0;
    }
    
    输出:
    The array elements in reverse order are:
    7 4 2 5 1
    
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”