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

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

deque :: rend()是C++ STL中的一个内置函数,它返回一个反向迭代器,该迭代器指向双端队列开始之前的位置(被视为其双端末尾)。

句法:

deque_name.rend()

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

返回值:返回一个反向迭代器,该迭代器指向双端队列开始之前的位置。

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

程序1:

// C++ program to illustrate the
// deque::rend() 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::rend() 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等的更多准备工作,请参阅“完整面试准备课程”