当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。