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


C++ multiset begin()、end()用法及代碼示例


  1. multiset::begin(是C++ STL中的內置函數,該函數返回指向多集容器中第一個元素的迭代器。由於多重集始終包含有序元素,因此begin()始終根據排序標準指向第一個元素。

    用法:

    iterator multiset_name.begin()
    

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

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


    以下示例程序旨在說明上述函數:

    // CPP program to demonstrate the 
    // multiset::begin() 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); 
      
        // Print the first element 
        cout << "The first element is:" << *(s.begin()) << endl; 
      
        // prints all elements in set 
        for (auto it = s.begin(); it != s.end(); it++) 
            cout << *it << " "; 
      
        return 0; 
    }
    輸出:
    The first element is:10
    10 10 11 14 15
    
  2. multiset::end()是C++ STL中的內置函數,該函數返回指向容器中最後一個元素之後的位置的迭代器。句法:
    iterator multiset_name.end()
    

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

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

    以下示例程序旨在說明上述函數:

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


相關用法


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