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

📅  最后修改于: 2021-05-30 10:13:20             🧑  作者: Mango

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

句法:

unordered_multiset_name.cend(n)

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

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

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

程序1:

// C++ program to illustrate the
// unordered_multiset::cend() function
#include 
using namespace std;
  
int main()
{
  
    // declaration
    unordered_multiset 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;
}
输出:
Elements: 13 13 10 15 15

程式2:

// C++ program to illustrate the
// unordered_multiset::cend() function
#include 
using namespace std;
  
int main()
{
  
    // declaration
    unordered_multiset 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;
}
输出:
Elements: z a b b b

程序3:

// C++ program to illustrate the
// unordered_multiset::cend() function
#include 
using namespace std;
  
int main()
{
  
    // declaration
    unordered_multiset 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
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”