C++ multimap crend()函数
C++ multimap中的 crend() 函数用于返回一个常量迭代器,它指向multimap的末尾(而不是最后一个元素,而是最后一个元素的下一个位置),以 逆序遍历 。 这类似于非逆序容器中第一个元素的前一个元素。
注意:这是一个占位符。该位置不存在元素,尝试访问会导致未定义的行为。
常量迭代器是指向常量内容的迭代器。
语法
const_reverse_iterator crend() const noexcept; //since C++ 11
参数
无
返回值
它返回一个指向反向容器最后一个元素后面元素的const_reverse_iterator。
复杂度
常数时间。
迭代器有效性
没有改变。
数据竞争
访问容器。
异常安全性
此函数不会抛出异常。
示例1
让我们看一个crend()函数的简单示例:
#include <iostream>
#include <map>
using namespace std;
int main ()
{
multimap<char,int> mymultimap;
mymultimap= {
{'a', 100},
{'a', 200},
{'c', 300},
{'b', 400}
};
// show content:
multimap<char,int>::const_reverse_iterator rit;
for (rit=mymultimap.crbegin(); rit!=mymultimap.crend(); ++rit)
cout << rit->first << " = " << rit->second << '\n';
return 0;
}
结果:
c = 300
b = 400
a = 200
a = 100
在上面的示例中,使用crend()函数返回一个常量反向迭代器,该迭代器指向反向容器的最后一个元素的下一个元素。
由于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 },
{ "aaa", 12 },
{ "ccc", 13 }
};
// Create a multimap iterator and point to the end of multimap
multimap<string, int>::const_reverse_iterator it = multimapEx.crbegin();
// Iterate over the multimap using Iterator till beginning.
while (it != multimapEx.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
aaa :: 12
aaa :: 10
在上面的示例中,我们使用while循环对multimap进行反向迭代。 因为multimap按键的排序顺序存储元素,所以对multimap进行迭代将得到按键排序的顺序。
示例3
让我们看一个简单的示例:
#include <iostream>
#include <map>
using namespace std;
int main(void) {
multimap<char, int> m = {
{'a', 1},
{'b', 2},
{'a', 3},
{'d', 4},
{'d', 5},
};
cout << "Multimap contains following elements in reverse order:" << endl;
for (auto it = m.crbegin(); it != m.crend(); ++it)
cout << it->first << " = " << it->second << endl;
return 0;
}
输出:
Multimap contains following elements in reverse order:
d = 5
d = 4
b = 2
a = 3
a = 1
在上面的示例中,multimap的元素返回的顺序是相反的。
示例4
让我们看一个简单的示例来对最高分进行排序和计算:
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main ()
{
multimap<int,int> emp = {
{ 1000, 10},
{ 2500, 20 },
{ 3000, 30 },
{ 3000, 40 },
{ 5500, 50 }};
cout << "Salary" << " | " << "ID" << '\n';
cout<<"______________________\n";
multimap<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
3000 | 40
3000 | 30
2500 | 20
1000 | 10
Highest salary: 5500
ID is: 50
在上面的示例中,实现了一个多重映射emp,其中ID被存储为值,工资作为键。这使我们能够利用多重映射中的自动排序,让我们能够识别具有最高工资的元素的ID。