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


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


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

    用法:

    reverse_iterator multiset_name.rbegin()
    

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

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


    以下示例程序旨在說明multiset::rbegin()方法:

    // CPP program to demonstrate the 
    // multiset::rbegin() function 
    #include <bits/stdc++.h> 
    using namespace std; 
    int main() 
    { 
      
        int arr[] = { 15, 12, 15, 11, 10, 10 }; 
      
        // initializes the set from an array 
        multiset<int> s(arr, arr + 6); 
      
        multiset<int>::reverse_iterator rit; 
      
        // prints all elements in reverse order 
        for (rit = s.rbegin(); rit != s.rend(); rit++) 
            cout << *rit << " "; 
      
        cout << "\nThe last element in multiset is " << *(s.rbegin()); 
      
        return 0; 
    }
    輸出:
    15 15 12 11 10 10 
    The last element in multiset is 15
    
  2. multiset::rend()在C++ STL的內置函數中,該函數返回一個反向迭代器,該迭代器指向多集容器中第一個元素之前的理論元素。

    用法:

    reverse_iterator multiset_name.rend()
    

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

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

    以下示例程序旨在說明multiset::rend()函數:

    // CPP program to demonstrate the 
    // multiset::rend() function 
    #include <bits/stdc++.h> 
    using namespace std; 
    int main() 
    { 
      
        int arr[] = { 15, 13, 15, 11, 13, 10 }; 
      
        // initializes the set from an array 
        multiset<int> s(arr, arr + 6); 
      
        multiset<int>::reverse_iterator rit; 
      
        // prints all elements in reverse order 
        for (rit = s.rbegin(); rit != s.rend(); rit++) 
            cout << *rit << " "; 
      
        return 0; 
    }
    輸出:
    15 15 13 13 11 10
    


相關用法


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