C++ multimap cend()函数
C++ multimap的 cend() 函数用于返回一个常量迭代器,该迭代器位于multimap中 最后一个元素的下一个位置。
注意:这只是一个占位符。该位置上没有元素存在,尝试访问该位置的行为是未定义的。
语法
const_iterator cend() const noexcept; //since C++ 11
const_iterator 是一个指向常量内容的迭代器。
参数
无
返回值
它返回一个指向 multimap 最后一个元素后面的常量迭代器。
复杂度
常数时间。
迭代器有效性
没有变化。
数据竞争
访问容器。
异常安全性
该成员函数不会抛出异常。
示例1
让我们看一下 cend() 函数的简单示例:
#include <iostream>
#include <map>
using namespace std;
int main ()
{
multimap<char,string> mymultimap;
mymultimap = {
{'a',"Java"},
{'b', "C++"},
{'b', "Python"},
{'a', "Android"}
};
// print content:
cout << "mymultimap contains:";
for (auto it = mymultimap.cbegin(); it != mymultimap.cend(); ++it)
cout << " [" << (*it).first << ':' << (*it).second << ']';
cout << '\n';
return 0;
}
输出:
mymultimap contains: [a:Java] [a:Android] [b:C++] [b:Python]
在上面的示例中,cend()函数用于返回一个指向mymultimap multimap中最后一个元素之后的const_迭代器。
示例2
让我们看一个简单的示例,使用for-each循环来迭代遍历multimap:
#include <iostream>
#include <map>
#include <string>
#include <iterator>
#include <algorithm>
using namespace std;
int main() {
multimap<string, int> m;
m= {
{"Room1", 100},
{"Room2", 200},
{"Room1", 300},
{"Room1", 100}
};
// Create a multimap iterator and point to beginning of multimap
multimap<string, int>::iterator it = m.begin();
// Iterate over a multimap using std::for_each and Lambda function
for_each(m.cbegin(), m.cend(),
[](pair<string, int> element){
// Accessing KEY from element
string word = element.first;
// Accessing VALUE from element.
int count = element.second;
cout<<word<<" = "<<count<<endl;
});
return 0;
}
输出:
Room1 = 100
Room1 = 300
Room1 = 100
Room2 = 200
在上面的示例中,我们使用了STL算法std::for-each来遍历multimap。它会遍历multimap的每个元素,并调用我们提供的回调函数。
示例3
让我们看一个简单的示例,使用while循环来遍历multimap:
#include <iostream>
#include <map>
#include <string>
int main()
{
using namespace std;
multimap<int,string> mymultimap = {
{ 100, "Nikita"},
{ 100, "Deep" },
{ 200, "Priya" },
{ 300, "Suman" },
{ 200, "Aman" }};
multimap<int, string>::const_iterator it; // declare an iterator
it = mymultimap.cbegin(); // assign it to the start of the vector
while (it != mymultimap.cend()) // while it hasn't reach the end
{
cout << it->first << " = " << it->second << "\n";
// prin the value of the element it points to
++it; // and iterate to the next element
}
cout << endl;
}
输出:
100 = Nikita
100 = Deep
200 = Priya
200 = Aman
300 = Suman
在上面的示例中,cend()函数被用来返回一个const_iterator指向mymultimap多重映射中最后一个元素的下一个位置。
示例4
让我们看一个简单的示例:
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main ()
{
multimap<int,int> mymultimap = {
{ 10, 10},
{ 20, 20 },
{ 10, 30 } };
cout<<"Elements are:" <<endl;
for (auto it = mymultimap.cbegin(); it != mymultimap.cend(); ++it)
cout << it->first
<< " + "
<< it->second
<< " = "
<<it->first + it->second
<< '\n';
auto ite = mymultimap.cend();
cout << "end element (point next to the last): ";
cout << "{" << ite->first << ", "
<< ite->second << "}\n";
return 0;
}
输出:
Elements are:
10 + 10 = 20
10 + 30 = 40
20 + 20 = 40
end element (point next to the last): {3, 0}
在上面的示例中,cend()函数用于返回指向mymultimap multimap中最后一个元素的下一个位置的const_iterator。