📜  C++ STL-map.crbegin()函数

📅  最后修改于: 2020-10-18 03:51:01             🧑  作者: Mango

C++ map crbegin()函数

C++ map crbegin()函数用于返回引用映射容器中最后一个元素的常量反向迭代器。

常量反向映射迭代器沿反向移动并递增,直到到达映射容器的开头(第一个元素)并指向常量元素。

句法

const_reverse_iterator crbegin() const noexcept; //since C++ 11

参数

没有

返回值

它返回一个常数反向迭代器,指向地图的最后一个元素。

例子1

让我们看一个简单的crbegin()函数示例。

#include 
#include 

using namespace std;

int main ()
{
  map 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循环以相反的顺序遍历地图。

#include 
#include 
#include 
#include 

using namespace std;
 
int main() {
 
    // Creating & Initializing a map of String & Ints
    map mapEx = {
            { "aaa", 10 },
            { "ddd", 11 },
            { "bbb", 12 },
            { "ccc", 13 }
    };
 
    // Create a map iterator and point to the end of map
     map::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 
#include 
#include 


using namespace std;

int main ()
{
  map 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 
#include 
#include 
using namespace std;

int main ()
{
  map marks = {
                { 400, 10},
                { 312, 20 },
                { 480, 30 },
                { 300, 40 },
                { 425, 50 }};


   cout << "Marks" << " | " << "Roll Number" << '\n';
   cout<<"______________________\n";
   
  map::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

在上面的示例中,实现了地图标记,其中将“卷号”存储为值,并将标记存储为键。这使我们能够利用地图中的自动排序功能,并使我们能够识别标记最高的元素的卷号。