當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ deque crend用法及代碼示例


deque::crend()是C++ STL中的內置函數,它返回一個常數反向迭代器,該迭代器指向雙端隊列的第一個元素之前的位置。句法

deque_name.crend()

參數:該函數不接受任何參數。
返回類型:此函數返回雙端隊列的常量反向迭代器。

Example-1:



// C++ program to illustrate the 
// deque::crend() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    deque<int> dq = { 10, 20, 30, 40, 50 }; 
  
    cout << "The deque in reverse order:\n"; 
  
    // prints the elements in reverse order 
    for (auto it = dq.crend() - 1; it >= dq.crbegin(); --it) 
        cout << *it << endl; 
  
    return 0; 
}
輸出:
The deque in reverse order:
10
20
30
40
50

示例2:由於迭代器是常量,因此嘗試更改它會導致錯誤。

// C++ program to illustrate the 
// deque::crend() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    deque<char> dq = { 'a', 'b', 'c', 'd', 'e', 'f' }; 
  
    cout << "The deque in reverse order:\n"; 
  
    // prints the elements in reverse order 
    for (auto it = dq.crend() - 1; it >= dq.crbegin(); --it) 
        *it = 'g'
  
    return 0; 
}

Compilation Error in CPP code:- prog.cpp:In function ‘int main()’:
prog.cpp:15:13:error:assignment of read-only location ‘it.std::reverse_iterator<_iterator>::operator* >()’
*it = ‘g’
^
prog.cpp:17:5:error:expected ‘;’ before ‘return’
return 0;
^




相關用法


注:本文由純淨天空篩選整理自ankit15697大神的英文原創作品 deque crend in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。