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


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


unordered_set::cbegin()方法是C++ STL中的内置函数,用于返回指向unordered_set容器中的第一个元素的const_iterator。该迭代器可以指向unordered_set容器中任何指定存储区的第一个元素或第一个元素。

注意:const_iterator仅可用于访问元素,而不能修改容器中存在的元素。

用法


unordered_set_name.cbegin(n)

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

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

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

示例1:

// C++ program to illustrate the 
// unordered_set::cbegin() 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.cbegin(); 
    auto itr2 = sampleSet.cbegin(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

示例2:

// C++ program to illustrate the 
// unordered_set::cbegin() function 
  
#include <iostream> 
#include <unordered_set> 
  
using namespace std; 
  
int main() 
{ 
  
    unordered_set<string> sampleSet; 
  
    // Inserting elements 
    sampleSet.insert("Welcome"); 
    sampleSet.insert("To"); 
    sampleSet.insert("GeeksforGeeks"); 
    sampleSet.insert("Computer Science Portal"); 
    sampleSet.insert("For Geeks"); 
  
    auto itr1 = sampleSet.cbegin(); 
    auto itr2 = sampleSet.cbegin(0); 
  
    cout << "First element in the container is: " << *itr1; 
    cout << "\nFirst element in the bucket 0 is: " << *itr2; 
  
    return 0; 
}
输出:
First element in the container is: Welcome
First element in the bucket 0 is: GeeksforGeeks


相关用法


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