📅  最后修改于: 2020-10-20 01:10:26             🧑  作者: Mango
C++ multiset crbegin()函数用于返回一个常量反向迭代器,该迭代器引用multiset容器中的最后一个元素。
容器的常量反向迭代器沿相反方向移动并递增,直到到达容器的开头(第一个元素)并指向常量元素。
const_reverse_iterator crbegin() const noexcept; //since C++ 11
没有
它返回一个常数反向迭代器,该迭代器指向multiset容器的最后一个元素。
没有
crbegin()函数返回一个常量反向迭代器,该迭代器指向多图的最后一个元素。
不变。
没有变化。
容器被访问。
同时访问多集容器的元素是安全的。
此函数从不抛出异常。
让我们看一下crbegin()函数的简单示例:
#include
#include
using namespace std;
int main ()
{
multiset mymultiset = {40,20,30,10,30,10};
cout << "mymultiset in reverse order:";
for (auto rit=mymultiset.crbegin(); rit != mymultiset.crend(); ++rit)
cout << ' ' << *rit;
cout << '\n';
return 0;
}
输出:
mymultiset in reverse order: 40 30 30 20 10 10
在上面的示例中,使用crbegin()函数返回一个常数反向迭代器,该迭代器指向mymultiset多集中的最后一个元素。
因为多集因此按键的排序顺序存储元素,所以对多集进行迭代将导致上述顺序,即键的排序顺序。
让我们看一个简单的示例,使用while循环以相反的顺序迭代多集:
#include
#include
#include
#include
using namespace std;
int main() {
// Creating & Initializing a multiset of String & Ints
multiset multisetEx = {"bbb", "ccc", "aaa", "bbb"};
// Create a multiset iterator and point to the end of multiset
multiset::const_reverse_iterator it = multisetEx.crbegin();
// Iterate over the multiset using Iterator till beginning.
while (it != multisetEx.crend()) {
// Accessing KEY from element pointed by it.
string word = *it;
cout << word << endl;
// Increment the Iterator to point to next entry
it++;
}
return 0;
}
输出:
ccc
bbb
bbb
aaa
在上面的示例中,我们使用while循环以相反的顺序对多重集进行const_iterate,并使用crbegin()函数初始化多重集的最后一个元素。
因为多重集因此按键的排序顺序存储元素,所以对多重集进行迭代将导致上述顺序,即键的排序顺序。
让我们看一个简单的示例,以获取反向多集的第一个元素:
#include
#include
#include
using namespace std;
int main ()
{
multiset s1 = {20,40,10,30, 20};
auto ite = s1.crbegin();
cout << "The first element of the reversed multiset s1 is: ";
cout << *ite;
return 0;
}
输出:
The first element of the reversed multiset s1 is: 40
在上面的示例中,crbegin()函数返回反向多集s1的第一个元素,即40。
让我们看一个简单的示例来对最高分进行排序和计算:
#include
#include
#include
using namespace std;
int main ()
{
multiset marks = {400, 220, 250, 250, 365, 220};
cout << "Marks" << '\n';
cout<<"______________________\n";
multiset::const_reverse_iterator rit;
for (rit=marks.crbegin(); rit!=marks.crend(); ++rit)
cout << *rit<< '\n';
auto ite = marks.crbegin();
cout << "\nHighest Marks is: "<< *ite<<" \n";
return 0;
}
输出:
Marks
______________________
400
365
250
250
220
220
Highest Marks is: 400
在以上示例中,实现了多集“标记”,其中此多集的元素存储为键。函数crbegin()使我们能够利用多集中的自动排序功能,并让我们识别最高的标记。