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


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


  1. multiset::crbegin()是C++ STL中的內置函數,該函數返回指向容器中最後一個元素的常量反向迭代器。迭代器不能用於修改多集容器中的元素。可以增加或減少迭代器以遍曆集合。

    用法:

    constant_reverse_iterator multiset_name.cregin()
    

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

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


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

    // CPP program to demonstrate the 
    // multiset::crbegin() function 
    #include <bits/stdc++.h> 
    using namespace std; 
    int main() 
    { 
      
        int arr[] = { 14, 10, 15, 11, 10 }; 
      
        // initializes the set from an array 
        multiset<int> s(arr, arr + 5); 
      
        cout << "The last element:" << *(s.crbegin()) << endl; 
        // prints all elements in set 
        for (auto it = s.crbegin(); it != s.crend(); it++) 
            cout << *it << " "; 
      
        return 0; 
    }
    輸出:
    The last element:15
    15 14 11 10 10
    
  2. multiset::crend()是C++ STL中的內置函數,它返回一個常數反向迭代器,該迭代器指向容器中第一個元素之前的位置。迭代器不能用於修改多集容器中的元素。可以增加或減少迭代器以遍曆集合。

    用法:

    constant_reverse_iterator multiset_name.crend()
    

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

    返回值:該函數返回一個常量迭代器,該迭代器指向多集容器中第一個元素之前的位置。

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

    // CPP program to demonstrate the 
    // multiset::crend() function 
    #include <bits/stdc++.h> 
    using namespace std; 
    int main() 
    { 
      
        int arr[] = { 14, 12, 15, 11, 10, 10, 16, 16 }; 
      
        // initializes the set from an array 
        multiset<int> s(arr, arr + 8); 
      
        // prints all elements in set 
        for (auto it = s.crbegin(); it != s.crend(); it++) 
            cout << *it << " "; 
      
        return 0; 
    }
    輸出:
    16 16 15 14 12 11 10 10
    


相關用法


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