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


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