C++ STL中的deque rend()函数
deque::rend() 是C++ STL中的一种内置函数,它返回一个 反向迭代器 ,它指向deque的前面位置(被认为是deque的反向结尾)。
语法:
deque_name.rend()
参数: 此函数不接受任何参数。
返回值: 它返回一个反向迭代器,它指向deque的前面位置。以下程序说明上述函数:
程序1:
// C++ program to illustrate the
// deque::rend() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
deque<int> 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
时间复杂度: O(1)
辅助空间: O(1)
程序2:
// C++ program to illustrate the
// deque::rend() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
deque<char> 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
时间复杂度: O(1)
辅助空间: O(1)