C ++ map crbegin()函數(shù)用于返回引用map容器中最后一個(gè)元素的常量反向迭代器。
常量map的反向迭代器將反向移動(dòng)并遞增,直到到達(dá)map容器的開頭(第一個(gè)元素)并指向常量元素。
const_reverse_iterator crbegin() const noexcept; //從 C++ 11 開始
沒有
它返回一個(gè)常數(shù)反向迭代器,指向map的最后一個(gè)元素。
讓我們看一個(gè)簡(jiǎn)單的crbegin()函數(shù)示例。
#include <iostream> #include <map> using namespace std; int main () { map<char,int> mymap; mymap['b'] = 100; mymap['a'] = 200; mymap['c'] = 300; cout << "以相反的順序排列mymap:"; for (auto rit = mymap.crbegin(); rit != mymap.crend(); ++rit) cout << " [" << rit->first << ':' << rit->second << ']'; cout << '\n'; return 0; }
輸出:
以相反的順序排列mymap: [c:300] [b:100] [a:200]
在上面的示例中,使用crbegin()函數(shù)返回一個(gè)常數(shù)反向迭代器,該迭代器指向mymap容器中的最后一個(gè)元素。
因?yàn)閙ap按鍵的排序順序存儲(chǔ)元素。因此,在map上進(jìn)行迭代將導(dǎo)致上述順序,即鍵的排序順序。
讓我們看一個(gè)簡(jiǎn)單的示例,使用while循環(huán)以相反的順序遍歷map。
#include <iostream> #include <map> #include <string> #include <iterator> using namespace std; int main() { // 創(chuàng)建和初始化string和int的map map<string, int> mapEx = { { "aaa", 10 }, { "ddd", 11 }, { "bbb", 12 }, { "ccc", 13 } }; // 創(chuàng)建一個(gè)map迭代器并指向map的末尾 map<string, int>::const_reverse_iterator it = mapEx.crbegin(); // 使用Iterator迭代map直到開始。 while (it != mapEx.crend()) { //從其指向的元素訪問KEY。 string word = it->first; //從它所指向的元素中訪問VALUE。 int count = it->second; cout << word << " :: " << count << endl; //增加迭代器以指向下一個(gè)條目 it++; } return 0; }
輸出:
ddd :: 11 ccc :: 13 bbb :: 12 aaa :: 10
在上面的示例中,我們使用while循環(huán)以相反的順序?qū)ap進(jìn)行const_iterate,并使用crbegin()函數(shù)初始化map的最后一個(gè)元素。
因?yàn)閙ap因此按鍵的排序順序存儲(chǔ)元素,所以在map上進(jìn)行迭代將導(dǎo)致上述順序,即鍵的排序順序。
讓我們看一個(gè)簡(jiǎn)單的示例,以獲取反向map的第一個(gè)元素。
#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 << "反向map容器m1的第一個(gè)元素是:"; cout << "{" << ite->first << ", " << ite->second << "}\n"; return 0; }
輸出:
反向map容器m1的第一個(gè)元素是: {3, 30}
在上面的示例中,crbegin()函數(shù)返回反轉(zhuǎn)map容器m1的第一個(gè)元素,即{3,30}。
讓我們看一個(gè)簡(jiǎn)單的示例,對(duì)最高分進(jìn)行排序和計(jì)算。
#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 << "\n最高分是: "<< ite->first <<" \n"; cout << "Topper的卷數(shù)是: "<< ite->second << "\n"; return 0; }
輸出:
Marks | Roll Number ______________________ 480 | 30 425 | 50 400 | 10 312 | 20 300 | 40 最高分是: 480 Topper的卷數(shù)是: 30
在上面的示例中,實(shí)現(xiàn)了map標(biāo)記,其中將“卷號(hào)(Roll Number)”存儲(chǔ)為值,并將標(biāo)記存儲(chǔ)為鍵。這使我們能夠利用map中的自動(dòng)排序功能,并使我們能夠識(shí)別標(biāo)記最高的元素的卷號(hào)。