亚洲区国产区激情区无码区,国产成人mv视频在线观看,国产A毛片AAAAAA,亚洲精品国产首次亮相在线

C++ 基礎(chǔ)教程

C++ 流程控制

C++ 函數(shù)

C++ 數(shù)組 & 字符串

C++ 數(shù)據(jù)結(jié)構(gòu)

C++ 類 & 對象

C++ 指針

C++ 繼承

C++ STL 教程

C++ 參考手冊

C++ map rbegin() 函數(shù)使用方法及示例

C++ STL map(容器)

C ++ map rbegin()函數(shù)用于返回指向map容器最后一個元素的反向迭代器。

map的反向迭代器沿反向移動并遞增,直到到達(dá)map容器的開頭(第一個元素)。

語法

      reverse_iterator rbegin(); // 在 C++ 11 之前
const_reverse_iterator rbegin() const; // 在 C++ 11 之前
      reverse_iterator rbegin() noexcept; //從 C++ 11 開始
const_reverse_iterator rbegin() const noexcept;  //從 C++ 11 開始

參數(shù)

沒有

返回值

它返回指向map的最后一個元素的反向迭代器。

實例1

讓我們看一個簡單的rbegin()函數(shù)示例。

#include <iostream>
#include <map>
using namespace std;
int main ()
{
  map<char,int> mymap;
  
  mymap['x'] = 100;
  mymap['y'] = 200;
  mymap['z'] = 300;

  map<char,int>::reverse_iterator rit;
  for (rit=mymap.rbegin(); rit!=mymap.rend(); ++rit)
    cout << rit->first << " = " << rit->second << '\n';

  return 0;
}

輸出:

z = 300
y = 200
x = 100

在上面的示例中,rbegin()函數(shù)用于返回指向mymap容器中最后一個元素的反向迭代器。

因為map因此按鍵的排序順序存儲元素,所以在map上進(jìn)行迭代將導(dǎo)致上述順序,即鍵的排序順序。

實例2

讓我們看一個簡單的示例,使用while循環(huán)以相反的順序遍歷map。

#include <iostream>
#include <map>
#include <string>
#include <iterator>

using namespace std;
 
int main() {
 
	map<string, int> mapEx = {
			{ "aaa", 10 },
			{ "ddd", 11 },
			{ "bbb", 12 },
			{ "ccc", 13 }
	};
 
	map<string, int>::reverse_iterator it = mapEx.rbegin();
 
	while (it != mapEx.rend()) {
		string word = it->first;
		int count = it->second;
		cout << word << " :: " << count << endl;
		it++;
	}
	return 0;
}

輸出:

ddd :: 11
ccc :: 13
bbb :: 12
aaa :: 10

在上面的示例中,我們使用while循環(huán)以相反的順序遍歷map,并且rbegin()函數(shù)初始化map的最后一個元素。

因為map因此按鍵的排序順序存儲元素,所以在map上進(jìn)行迭代將導(dǎo)致上述順序,即鍵的排序順序。

實例3

讓我們看一個簡單的示例,以獲取反向map的第一個元素。

#include <iostream>
#include <string>
#include <map>

using namespace std;

int main ()
{
  map<int,int> m1 = {
                { 1, 10},
                { 2, 20 },
                { 3, 30 } };
          
    auto ite = m1.rbegin();
 
    cout << "反向map容器m1的第一個元素是: ";
    cout << "{" << ite->first << ", "
         << ite->second << "}\n";

  return 0;
  }

輸出:

反向map容器m1的第一個元素是: {3, 30}

在上面的示例中,rbegin()函數(shù)返回反轉(zhuǎn)容器m1的第一個元素,即{3,30}。

實例4

讓我們看一個簡單的示例,對最高分進(jìn)行排序和計算。

#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>::reverse_iterator rit;
  for (rit=marks.rbegin(); rit!=marks.rend(); ++rit)
    cout << rit->first << "   |  " << rit->second << '\n';

    auto ite = marks.rbegin();
 
    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

在上面的示例中,實現(xiàn)了map標(biāo)記,其中將“卷號”存儲為值,并將標(biāo)記存儲為鍵。這使我們能夠利用map中的自動排序功能,并使我們能夠識別標(biāo)記最高的元素的卷號。

C++ STL map(容器)