C++ 多映射 crbegin() 函数用于返回引用多映射容器中最后一个元素的常量反向迭代器。
multimap 的常量反向迭代器以相反的方向移动并递增它,直到它到达 multimap 容器的开头(第一个元素)并指向常量元素。
用法
const_reverse_iterator crbegin() const noexcept;//since C++ 11
参数
空
返回值
它返回一个指向 multimap 的最后一个元素的常量反向迭代器。
复杂度
恒定。
迭代器有效性
没有变化。
数据竞争
容器被访问。
异常安全
这个函数从不抛出异常。
例子1
让我们看看 crbegin() 函数的简单示例:
#include <iostream>
#include <map>
using namespace std;
int main ()
{
multimap<char,string> mymultimap;
mymultimap = {
{'a',"Java"},
{'b', "C++"},
{'b', "Python"},
{'a', "Android"}
};
cout << "mymultimap in reverse order:";
for (auto rit = mymultimap.crbegin(); rit != mymultimap.crend(); ++rit)
cout << " [" << rit->first << ':' << rit->second << ']';
cout << '\n';
return 0;
}
输出:
mymultimap in reverse order:[b:Python] [b:C++] [a:Android] [a:Java]
在上面的例子中,crbegin() 函数用于返回一个常量反向迭代器,指向 mymultimap 多映射中的最后一个元素。
由于 multimap 以键的排序顺序存储元素,因此迭代 multimap 将导致上述顺序,即键的排序顺序。
例子2
让我们看一个使用 while 循环以相反顺序迭代 multimap 的简单示例:
#include <iostream>
#include <map>
#include <string>
#include <iterator>
using namespace std;
int main() {
// Creating & Initializing a multimap of String & Ints
multimap<string, int> multimapEx = {
{ "aaa", 10 },
{ "ddd", 11 },
{ "aaa", 12 },
{ "ccc", 13 }
};
// Create a multimap iterator and point to the end of multimap
multimap<string, int>::const_reverse_iterator it = multimapEx.crbegin();
// Iterate over the multimap using Iterator till beginning.
while (it != multimapEx.crend()) {
// Accessing KEY from element pointed by it.
string word = it->first;
// Accessing VALUE from element pointed by it.
int count = it->second;
cout << word << "::" << count << endl;
// Increment the Iterator to point to next entry
it++;
}
return 0;
}
输出:
ddd::11 ccc::13 aaa::12 aaa::10
在上面的例子中,我们以相反的顺序在 multimap 上使用 while 循环到 const_iterate 和 crbegin() 函数初始化 multimap 的最后一个元素。
由于 multimap 以键的排序顺序存储元素,因此迭代 multimap 将导致上述顺序,即键的排序顺序。
例子3
让我们看一个简单的例子来获取反向多重映射的第一个元素:
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main ()
{
multimap<int,int> m1 = {
{ 1, 10},
{ 2, 20 },
{ 2, 30 } };
auto ite = m1.crbegin();
cout << "The first element of the reversed multimap m1 is:";
cout << "{" << ite->first << ", "
<< ite->second << "}\n";
return 0;
}
输出:
The first element of the reversed multimap m1 is:{2, 30}
在上面的例子中,crbegin() 函数返回反向多映射 m1 的第一个元素,即 {2,30}。
示例 4
让我们看一个简单的例子来排序和计算最高分:
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main ()
{
multimap<int,int> marks = {
{ 400, 10},
{ 300, 20 },
{ 400, 30 },
{ 300, 40 },
{ 480, 50 }};
cout << "Marks" << " | " << "Roll Number" << '\n';
cout<<"______________________\n";
multimap<int,int>::const_reverse_iterator rit;
for (rit=marks.crbegin(); rit!=marks.crend(); ++rit)
cout << rit->first << " | " << rit->second << '\n';
auto ite = marks.crbegin();
cout << "\nHighest Marks is:"<< ite->first <<" \n";
cout << "Roll Number of Topper is:"<< ite->second << "\n";
return 0;
}
输出:
Marks | Roll Number _____________________ 480 | 50 400 | 30 400 | 10 300 | 40 300 | 20 Highest Marks is:480 Roll Number of Topper is:50
在上面的例子中,实现了一个多映射 "marks",其中 Roll Number 被存储为 value 并标记为 key。这使我们能够利用多映射中的自动排序,并让我们识别具有最高标记的元素的滚动数。
相关用法
- C++ multimap crend()用法及代码示例
- C++ multimap cend()用法及代码示例
- C++ multimap clear()用法及代码示例
- C++ multimap cbegin()用法及代码示例
- C++ multimap key_comp()用法及代码示例
- C++ multimap empty()用法及代码示例
- C++ multimap insert()用法及代码示例
- C++ multimap lower_bound()用法及代码示例
- C++ multimap rend()用法及代码示例
- C++ multimap maxsize()用法及代码示例
- C++ multimap rend用法及代码示例
- C++ multimap get_allocator()用法及代码示例
- C++ multimap upper_bound()用法及代码示例
- C++ multimap key_comp用法及代码示例
- C++ multimap emplace()用法及代码示例
- C++ multimap equal_range()用法及代码示例
- C++ multimap rbegin用法及代码示例
- C++ multimap rbegin()用法及代码示例
- C++ multimap value_comp()用法及代码示例
- C++ multimap erase()用法及代码示例
注:本文由纯净天空筛选整理自 C++ multimap crbegin() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。