📜  C++ STL中的双端队列rbegin()函数

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

deque :: rbegin()是C++ STL中的内置函数,它返回一个反向迭代器,该迭代器指向双端队列的最后一个元素(即,其反向开始)。

句法:

deque_name.rbegin()

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

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

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

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

程式2:

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