當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


C++ multimap rbegin()用法及代碼示例

C++ 多映射 rbegin() 函數用於返回引用多映射容器最後一個元素的反向迭代器。

multimap 的反向迭代器以相反的方向移動並遞增它,直到它到達 multimap 容器的開頭(第一個元素)。

用法

reverse_iterator rbegin();                            //until C++ 11
const_reverse_iterator rbegin() const;                //until C++ 11
      reverse_iterator rbegin() nothrow;	      //since C++ 11
const_reverse_iterator rbegin() const nothrow;    //since C++ 11

參數

返回值

它返回一個指向多重映射最後一個元素的反向迭代器。

複雜度

恒定。

迭代器有效性

沒有變化。

數據競爭

訪問容器的常量和非常量版本都不會修改容器。

異常安全

此函數從不拋出異常。

例子1

讓我們看看 rbegin() 函數的簡單示例:

#include <iostream>
#include <map>
using namespace std;
int main ()
{
  multimap<char,int> mymultimap;
  mymultimap = {
               {'a', 100},
               {'b', 200},
               {'a', 300},
               {'c', 300}
               };
  // show content:
  multimap<char,int>::reverse_iterator rit;
  for (rit=mymultimap.rbegin(); rit!=mymultimap.rend(); ++rit)
    cout << rit->first << " = " << rit->second << '\n';
  return 0;
}

輸出:

c = 300
b = 200
a = 300
a = 100

在上麵的例子中, rbegin() 函數用於返回指向 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 },
            { "ccc", 12 },
            { "ccc", 13 }
    };
    // Create a multimap iterator and point to the end of multimap
    multimap<string, int>::reverse_iterator it = multimapEx.rbegin();
    // Iterate over the multimap using Iterator till beginning.
    while (it != multimapEx.rend()) {
        // 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
ccc::12
aaa::10

在上麵的例子中,我們使用 while 循環以相反的順序迭代多重映射,並使用 rbegin() 函數初始化多重映射的最後一個元素。

由於 multimap 以鍵的排序順序存儲元素,因此迭代 multimap 將導致上述順序,即鍵的排序順序。

例子3

讓我們看一個簡單的例子來獲取反向多重映射的第一個元素:

#include <iostream>
#include <string>
#include <map>
using namespace std;
int main ()
{
  multimap<int,int> m1 = {
                { 1, 10},
                { 2, 20 },
                { 3, 30 }, 
                { 3, 40 },
                { 4, 50}
                };         
    auto ite = m1.rbegin();
    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:{4, 50}

在上麵的例子中,rbegin() 函數返回反向多映射 m1 的第一個元素,即 {4,50}。

示例 4

讓我們看一個簡單的例子來排序和計算最高分:

#include <iostream>
#include <string>
#include <map>
using namespace std;
int main ()
{
  multimap<int,int> marks = {
                { 425, 10},
                { 300, 20 },
                { 480, 30 },
                { 300, 40 },
                { 425, 50 }};
   cout << "Marks" << " | " << "Roll Number" << '\n';
   cout<<"______________________\n";
  multimap<int,int>::reverse_iterator rit;
  for (rit=marks.rbegin(); rit!=marks.rend(); ++rit)
    cout << rit->first << "   |  " << rit->second << '\n';
    auto ite = marks.rbegin();
    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
425   |  10
300   |  40
300   |  20
Highest Marks is:480 
Roll Number of Topper is:30

在上麵的示例中,實現了多映射標記,其中將卷號存儲為值並將標記為鍵。這使我們能夠利用多映射中的自動排序,並讓我們識別具有最高標記的元素的滾動數。





相關用法


注:本文由純淨天空篩選整理自 C++ multimap rbegin() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。