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


C++ unordered_multimap cend()用法及代码示例


unordered_multimap::cend()是C++ STL中的内置函数,该函数返回一个常量迭代器,该常量迭代器指向容器中最后一个元素之后的位置或其存储桶中最后一个元素之后的位置。

用法:

unordered_multimap_name.cend(n)

参数:该函数接受一个参数。如果传递了参数,它将返回一个常量迭代器,该常量指向其存储桶中最后一个元素之后的位置。如果未传递任何参数,则它将返回一个常量迭代器,该迭代器指向unordered_multimap容器中最后一个元素之后的位置。


返回值:它返回一个常量迭代器。它不能用于修改unordered_multimap元素的键和元素。

以下示例程序旨在说明上述函数:

示例1:

// C++ program to illustrate the 
// unordered_multimap::cend() 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // declaration 
    unordered_multimap<int, int> sample; 
  
    // inserts key and element 
    sample.insert({ 1, 2 }); 
    sample.insert({ 3, 4 }); 
    sample.insert({ 3, 4 }); 
    sample.insert({ 2, 3 }); 
    sample.insert({ 2, 3 }); 
  
    // prints all element 
    cout << "Key and Elements:"; 
    for (auto it = sample.cbegin(); it != sample.cend(); it++) 
        cout << "\n   " << it->first << "\t      " 
             << it->second; 
  
    return 0; 
}
输出:
Key and Elements:
   2          3
   2          3
   1          2
   3          4
   3          4

示例2:

// C++ program to illustrate the 
// unordered_multimap::cend(bucket) 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // declaration 
    unordered_multimap<int, int> sample; 
  
    // inserts key and element 
    sample.insert({ 1, 2 }); 
    sample.insert({ 3, 4 }); 
    sample.insert({ 3, 4 }); 
    sample.insert({ 2, 3 }); 
    sample.insert({ 2, 3 }); 
  
    // prints all element 
    cout << "Key and Elements of first bucket:"; 
    for (auto it = sample.cbegin(1); it != sample.cend(1); it++) 
        cout << "\n   " << it->first << "\t      " 
             << it->second; 
  
    return 0; 
}
输出:
Key and Elements of first bucket:
   1          2


相关用法


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