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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。