C++ STL中的unordered_multiset cend()函数

C++ STL中的unordered_multiset cend()函数

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

语法:

unordered_multiset_name.cend(n)

参数: 该函数接受一个参数。如果传递了参数,则返回一个指向桶中最后一个元素之后位置的常量迭代器。如果没有传递参数,则返回一个指向unordered_multiset容器中最后一个元素之后位置的常量迭代器。

返回值: 它返回一个常量迭代器。它不能用于修改容器的内容。

下面的程序说明了上述函数:

程序1:

// C++ program to illustrate the
// unordered_multiset::cend() function
#include <bits/stdc++.h>
using namespace std;
  
int main()
{
  
    // declaration
    unordered_multiset<int> sample;
  
    // inserts element
    sample.insert(10);
    sample.insert(15);
    sample.insert(15);
    sample.insert(13);
    sample.insert(13);
  
    cout << "\nElements: ";
  
    // prints all element till the last
    for (auto it = sample.cbegin(); it != sample.cend(); it++)
        cout << *it << " ";
    return 0;
}
元素:13 13 10 15 15

程序2:

// C++ program to illustrate the
// unordered_multiset::cend() function
#include <bits/stdc++.h>
using namespace std;
  
int main()
{
  
    // declaration
    unordered_multiset<char> sample;
  
    // inserts element
    sample.insert('a');
    sample.insert('b');
    sample.insert('b');
    sample.insert('b');
    sample.insert('z');
  
    cout << "\nElements: ";
  
    // prints all element
    for (auto it = sample.cbegin(); it != sample.cend(); it++)
        cout << *it << " ";
    return 0;
}
元素:z a b b b

程序3:

// C++ program to illustrate the
// unordered_multiset::cend() function
#include <bits/stdc++.h>
using namespace std;
  
int main()
{
  
    // declaration
    unordered_multiset<char> sample;
  
    // inserts element
    sample.insert('a');
    sample.insert('b');
    sample.insert('b');
    sample.insert('b');
    sample.insert('z');
  
    // prints all element bucket wise
  
    for (int i = 0; i < sample.bucket_count(); i++) {
  
        cout << "Bucket " << i << ": ";
  
        // if bucket is empty
        if (sample.bucket_size(i) == 0)
            cout << "empty";
  
        for (auto it = sample.cbegin(i); it != sample.cend(i); it++)
            cout << *it << " ";
  
        cout << endl;
    }
    return 0;
}
Bucket 0: b b b 
Bucket 1: empty
Bucket 2: empty
Bucket 3: z 
Bucket 4: empty
Bucket 5: empty
Bucket 6: a

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

C++ 教程