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


C++ array::crbegin()、array::crend()用法及代碼示例


  1. array::crbegin()是C++ STL中的內置函數,該函數返回指向容器中最後一個元素的常量反向迭代器。

    用法:

    array_name.crbegin()

    參數:該函數不接受任何參數。

    返回值:該函數返回指向容器中最後一個元素的反向迭代器。


    演示array::crbegin()方法的程序:

    程序1:

    // CPP program to illustrate 
    // the array::crbegin() function 
    #include <bits/stdc++.h> 
    using namespace std; 
    int main() 
    { 
        // array initialisation 
        array<int, 5> arr = { 1, 5, 2, 4, 7 }; 
      
        // prints the last element 
        cout << "The last element is " << *(arr.crbegin()) << endl; 
      
        // prints all the elements 
        cout << "The array elements in reverse order are:\n"; 
        for (auto it = arr.crbegin(); it != arr.crend(); it++) 
            cout << *it << " "; 
      
        return 0; 
    }
    輸出:
    The last element is 7
    The array elements in reverse order are:
    7 4 2 5 1
    
  2. array::crend()是C++ STL中的內置函數,該函數返回一個常數反向迭代器,該迭代器指向數組容器中第一個元素之前的理論元素。

    用法:

    array_name.crend()

    參數:該函數不接受任何參數。

    返回值:該函數返回一個常數反向迭代器,該迭代器指向數組容器中第一個元素之前的理論元素。

    演示array::crend()方法的程序:

    程序1:

    // CPP program to illustrate 
    // the array::crend() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
        array<int, 5> arr = { 1, 5, 2, 4, 7 }; 
      
        // prints all the elements 
        cout << "The array elements in reverse order are:\n"; 
        for (auto it = arr.crbegin(); it != arr.crend(); it++) 
            cout << *it << " "; 
        return 0; 
    }
    輸出:
    The array elements in reverse order are:
    7 4 2 5 1
    



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