C++ 映射 crbegin() 函数用于返回引用映射容器中最后一个元素的常量反向迭代器。
map 的常量反向迭代器以相反的方向移动并递增它,直到它到达 map 容器的开头(第一个元素)并指向常量元素。
用法
const_reverse_iterator crbegin() const noexcept; //since C++ 11
参数
空
返回值
它返回一个指向Map最后一个元素的常量反向迭代器。
例子1
让我们看一个 crbegin() 函数的简单例子。
#include <iostream>
#include <map>
using namespace std;
int main ()
{
map<char,int> mymap;
mymap['b'] = 100;
mymap['a'] = 200;
mymap['c'] = 300;
cout << "mymap in reverse order:";
for (auto rit = mymap.crbegin(); rit != mymap.crend(); ++rit)
cout << " [" << rit->first << ':' << rit->second << ']';
cout << '\n';
return 0;
}
输出:
mymap in reverse order:[c:300] [b:100] [a:200]
在上面的例子中,crbegin() 函数用于返回一个指向 mymap 映射中最后一个元素的常量反向迭代器。
因为 map 以键的排序顺序存储元素。因此,迭代映射将导致上述顺序,即键的排序顺序。
例子2
让我们看一个使用 while 循环以相反顺序遍历Map的简单示例。
#include <iostream>
#include <map>
#include <string>
#include <iterator>
using namespace std;
int main() {
// Creating & Initializing a map of String & Ints
map<string, int> mapEx = {
{ "aaa", 10 },
{ "ddd", 11 },
{ "bbb", 12 },
{ "ccc", 13 }
};
// Create a map iterator and point to the end of map
map<string, int>::const_reverse_iterator it = mapEx.crbegin();
// Iterate over the map using Iterator till beginning.
while (it != mapEx.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 bbb::12 aaa::10
在上面的例子中,我们使用 while 循环以相反的顺序在映射上 const_iterate 和 crbegin() 函数初始化映射的最后一个元素。
由于 map 以键的排序顺序存储元素,因此迭代 map 将导致上述顺序,即键的排序顺序。
例子3
让我们看一个简单的例子来获取反向映射的第一个元素。
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main ()
{
map<int,int> m1 = {
{ 1, 10},
{ 2, 20 },
{ 3, 30 } };
auto ite = m1.crbegin();
cout << "The first element of the reversed map m1 is:";
cout << "{" << ite->first << ", "
<< ite->second << "}\n";
return 0;
}
输出:
The first element of the reversed map m1 is:{3, 30}
在上面的例子中,crbegin() 函数返回反向映射 m1 的第一个元素,即 {3,30}。
示例 4
让我们看一个简单的例子来排序和计算最高分。
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main ()
{
map<int,int> marks = {
{ 400, 10},
{ 312, 20 },
{ 480, 30 },
{ 300, 40 },
{ 425, 50 }};
cout << "Marks" << " | " << "Roll Number" << '\n';
cout<<"______________________\n";
map<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 | 30 425 | 50 400 | 10 312 | 20 300 | 40 Highest Marks is:480 Roll Number of Topper is:30
在上面的示例中,实现了Map标记,其中将滚动编号存储为值并将标记为键。这使我们能够利用Map中的自动排序,并让我们识别具有最高标记的元素的滚动编号。
相关用法
- C++ map crbegin()、crend()用法及代码示例
- C++ map crend()用法及代码示例
- C++ map cbegin()用法及代码示例
- C++ map cend()用法及代码示例
- C++ map cbegin()、cend()用法及代码示例
- C++ map clear()用法及代码示例
- C++ map count()用法及代码示例
- C++ map lower_bound()用法及代码示例
- C++ map max_size()用法及代码示例
- C++ map begin()用法及代码示例
- C++ map rbegin()用法及代码示例
- C++ map size()用法及代码示例
- C++ map key_comp()用法及代码示例
- C++ map end()用法及代码示例
- C++ map value_comp()用法及代码示例
- C++ map swap()用法及代码示例
- C++ map find()用法及代码示例
- C++ map upper_bound()用法及代码示例
- C++ map rend()用法及代码示例
- C++ map get_allocator用法及代码示例
注:本文由纯净天空筛选整理自 C++ map crbegin() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。