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


C++ unordered_set cend()用法及代碼示例


unordered_set::cend()方法是C++ STL中的內置函數,用於返回指向past-the-end元素的const_iterator,該past-the-end元素位於unordered_set容器或其中一個存儲桶中。此函數不直接指向容器中的任何元素。它僅用於表示容器的末端或範圍的開放末端,如[cbegin,cend)。

注意:const_iterator僅可用於訪問元素,而不能修改容器中存在的元素。

用法


unordered_set_name.cend(n);

參數:此函數接受單個參數n。這是一個可選參數,用於指定存儲桶編號。如果未傳遞此參數,則cend()方法將返回const_iterator,該指針指向容器的最後一個元素之後的位置;如果傳遞此參數,則cend()方法將返回const_iterator,該指針指向容器中最後一個元素之後的位置unordered_set容器中的特定存儲桶。

返回值:此函數返回一個const_iterator,它指向容器中最後一個元素或容器中指定存儲區之後的位置。

以下示例程序旨在說明unordered_set::cend()函數:

示例1:

// C++ program to illustrate the 
// unordered_set::cend() 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); 
  
    // Here, the cend() method is used to 
    // iterate in the range of elements 
    // present in the unordered_set container 
    cout << "Elements present in sampleSet are: \n"; 
    for (auto itr = sampleSet.cbegin(); itr != sampleSet.cend(); 
         itr++) { 
        cout << *itr << endl; 
    } 
  
    return 0; 
}
輸出:
Elements present in sampleSet are: 
25
5
10
15
20

示例2:

// C++ program to illustrate the 
// unordered_set::cend() 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"); 
  
    // Here, the cend() method is used to 
    // iterate in the range of elements 
    // present in the unordered_set container 
    cout << "Elements present in sampleSet are: \n"; 
    for (auto itr = sampleSet.cbegin(); itr != sampleSet.cend(); 
         itr++) { 
        cout << *itr << endl; 
    } 
  
    return 0; 
}
輸出:
Elements present in sampleSet are: 
Welcome
To
GeeksforGeeks
For Geeks
Computer Science Portal


相關用法


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