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


C++ vector rbegin()、rend()用法及代碼示例


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

    用法:

    vector_name.rbegin()

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

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


    演示vector::rbegin()方法的程序:

    程序1:

    // CPP program to illustrate 
    // the vector::rbegin() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
        vector<int> v; 
        v.push_back(11); 
        v.push_back(12); 
        v.push_back(13); 
        v.push_back(14); 
        v.push_back(15); 
      
        // prints all the elements 
        cout << "The vector elements in reverse order are:\n"; 
        for (auto it = v.rbegin(); it != v.rend(); it++) 
            cout << *it << " "; 
        return 0; 
    }
    輸出:
    The vector elements in reverse order are:
    15 14 13 12 11
    
  2. vector::rend()是C++ STL中的內置函數,該函數返回一個反向迭代器,指向數組容器中第一個元素之前的理論元素。

    用法:

    vector_name.rend()

    參數:該函數不帶任何參數。

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

    演示vector::rend()方法的程序:

    程序1:

    // CPP program to illustrate 
    // the vector::rend() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
        vector<int> v; 
        v.push_back(11); 
        v.push_back(12); 
        v.push_back(13); 
        v.push_back(14); 
        v.push_back(15); 
      
        cout << "The last element is:" << *v.rbegin(); 
      
        // prints all the elements 
        cout << "\nThe vector elements in reverse order are:\n"; 
        for (auto it = v.rbegin(); it != v.rend(); it++) 
            cout << *it << " "; 
        return 0; 
    }
    輸出:
    The last element is:15
    The vector elements in reverse order are:
    15 14 13 12 11
    


相關用法


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