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


C++ map crend()用法及代碼示例


C++ 映射 crend() 函數用於以相反的順序返回一個常量迭代器到映射的末尾(不是最後一個元素而是過去的最後一個元素)。這類似於非逆向容器的第一個元素之前的元素。

注意:-這是一個占位符。此位置不存在元素,嘗試訪問是未定義的行為。

注意:常量迭代器是指向常量內容的迭代器。

用法

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

參數

返回值

它將 const_reverse_iterator 返回到反向容器的最後一個元素之後的元素。

例子1

讓我們看一個 crend() 函數的簡單例子。

#include <iostream>
#include <map>

using namespace std;

int main ()
{
  map<char,int> mymap;
  
  mymap['x'] = 100;
  mymap['y'] = 200;
  mymap['z'] = 300;

  // show content:
  map<char,int>::const_reverse_iterator rit;
  for (rit=mymap.crbegin(); rit!=mymap.crend(); ++rit)
    cout << rit->first << " = " << rit->second << '\n';

  return 0;
}

輸出:

z = 300
y = 200
x = 100

在上麵的例子中, crend() 函數用於返回一個常量反向迭代器到反向容器的最後一個元素之後的元素。

由於 map 以鍵的排序順序存儲元素,因此迭代 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

在上麵的例子中,我們以相反的順序在Map上使用 while 循環到 const_iterate。

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

例子3

讓我們看一個簡單的例子。

#include <iostream>
#include <map>

using namespace std;

int main(void) {
   /* Initializer_list constructor */
   map<char, int> m = {
            {'a', 1},
            {'b', 2},
            {'c', 3},
            {'d', 4},
            {'e', 5},
            };

   cout << "Map contains following elements in reverse order:" << endl;

   for (auto it = m.crbegin(); it != m.crend(); ++it)
      cout << it->first << " = " << it->second << endl;

   return 0;
}

輸出:

Map contains following elements in reverse order:
e = 5
d = 4
c = 3
b = 2
a = 1

在上麵的例子中,map 的元素以相反的順序返回。

示例 4

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

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


using namespace std;

int main ()
{
  map<int,int> emp = {
                { 1000, 10},
                { 2500, 20 },
                { 4500, 30 },
                { 3000, 40 },
                { 5500, 50 }};


   cout << "Salary" << " | " << "ID" << '\n';
   cout<<"______________________\n";
   
  map<int,int>::const_reverse_iterator rit;
  for (rit=emp.crbegin(); rit!=emp.crend(); ++rit)
    cout << rit->first << "   |  " << rit->second << '\n';

    auto ite = emp.crbegin();
 
    cout << "\nHighest salary:"<< ite->first <<" \n";
    cout << "ID is:"<< ite->second << "\n";

  return 0;
  }

輸出:

Salary | ID
______________________
5500   | 50
4500   | 30
3000   | 40
2500   | 20
1000   | 10

Highest salary:5500 
ID is:50

在上麵的示例中,實現了一個映射 emp,其中將 ID 存儲為值,將薪水存儲為鍵。這使我們能夠利用Map中的自動排序,並讓我們能夠識別工資最高的元素的 ID。




相關用法


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