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


C++ unordered_set begin()用法及代码示例


unordered_set::begin()方法是C++ STL中的内置函数,用于返回指向unordered_set容器中第一个元素的迭代器。 unordered_set的所有迭代器只能用于访问元素,不允许迭代器修改unordered_set容器中存在的元素。

注意:此迭代器可以指向unordered_set容器中任何指定存储区的第一个元素或第一个元素。

用法


unordered_set_name.begin(n)

参数:这是一个可选参数,用于指定存储区编号。如果未传递此参数,则begin()方法将返回指向容器第一个元素的迭代器,如果传递此参数,则begin()方法将返回指向unordered_set容器中特定存储区的第一个元素的迭代器。

返回值:此函数返回一个迭代器,该迭代器指向容器中的第一个元素或容器中的指定存储桶。

以下示例程序旨在说明unordered_set::begin()函数:

// CPP program to illustrate the 
// unordered_set::begin() function 
  
#include <iostream> 
#include <unordered_set> 
  
using namespace std; 
  
int main() 
{ 
  
    unordered_set<int> sampleSet; 
  
    // Inserting elements in the std 
    sampleSet.insert(5); 
    sampleSet.insert(10); 
    sampleSet.insert(15); 
    sampleSet.insert(20); 
    sampleSet.insert(25); 
  
    auto itr1 = sampleSet.begin(); 
    auto itr2 = sampleSet.begin(4); 
  
    cout << "First element in the container is: " << *itr1; 
    cout << "\nFirst element in the bucket 4 is: " << *itr2; 
  
    return 0; 
}
输出:
First element in the container is: 25
First element in the bucket 4 is: 15


相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 unordered_set begin() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。