📅  最后修改于: 2020-10-19 07:49:10             🧑  作者: Mango
C++ Multiset.rbegin()函数用于返回引用multiset容器最后一个元素的反向迭代器。
Multiset的反向迭代器沿相反方向移动并递增,直到到达Multiset容器的开头(第一个元素)。
reverse_iterator rbegin(); //until C++ 11
const_reverse_iterator rbegin() const; //until C++ 11
reverse_iterator rbegin() noexcept; //since C++ 11
const_reverse_iterator rbegin() const noexcept; //since C++ 11
没有
它返回反向的迭代器(反向迭代器),该迭代器指向多集的最后一个元素。
不变。
没有变化。
无论是非const版本还是const版本都不能修改多集容器,都可以访问多集。同时访问多集的元素是安全的。
此函数永远不会引发异常。
让我们看一下rbegin()函数的简单示例:
#include
#include
using namespace std;
int main ()
{
multiset mymultiset= {20,10,20,40,10,30};
// show content:
cout<<"Elements are: "<::reverse_iterator rit;
for (rit=mymultiset.rbegin(); rit!=mymultiset.rend(); ++rit)
cout << *rit<< '\n';
return 0;
}
输出:
Elements are:
40
30
20
20
10
10
在上面的示例中,rbegin()函数用于返回指向mymultiset多集中最后一个元素的反向迭代器。
因为Multiset因此按键的排序顺序存储元素,所以对Multiset进行迭代将导致上述顺序,即键的排序顺序。
让我们看一个简单的示例,使用while循环以相反的顺序迭代多集:
#include
#include
#include
#include
using namespace std;
int main() {
// Creating & Initializing a multiset of String
multiset multisetEx = {"aaa", "ccc", "ddd", "bbb", "aaa", "bbb"};
// Create a multiset iterator and point to the end of multiset
multiset::reverse_iterator it = multisetEx.rbegin();
// Iterate over the multiset using Iterator till beginning.
while (it != multisetEx.rend()) {
// Accessing KEY from element pointed by it.
string word = *it;
cout << word << endl;
// Increment the Iterator to point to next entry
it++;
}
return 0;
}
输出:
ddd
ccc
bbb
bbb
aaa
aaa
在上面的示例中,我们使用while循环以相反的顺序遍历多集,并使用rbegin()函数初始化多集的最后一个元素。
因为Multiset因此按键的排序顺序存储元素,所以对Multiset进行迭代将导致上述顺序,即键的排序顺序。
让我们看一个简单的示例,以获取反向多集的第一个元素:
#include
#include
int main( )
{
using namespace std;
multiset s1;
multiset ::iterator s1_Iter;
multiset ::reverse_iterator s1_rIter;
s1.insert( 10 );
s1.insert( 20 );
s1.insert( 30 );
s1.insert( 20 );
s1_rIter = s1.rbegin( );
cout << "The first element in the reversed multiset is "
<< *s1_rIter << "." << endl;
// begin can be used to start an iteration
// throught a multiset in a forward order
cout << "The multiset is:";
for ( s1_Iter = s1.begin( ) ; s1_Iter != s1.end( ); s1_Iter++ )
cout << " " << *s1_Iter;
cout << endl;
// rbegin can be used to start an iteration
// throught a multiset in a reverse order
cout << "The reversed multiset is:";
for ( s1_rIter = s1.rbegin( ) ; s1_rIter != s1.rend( ); s1_rIter++ )
cout << " " << *s1_rIter;
cout << endl;
// A multiset element can be erased by dereferencing to its key
s1_rIter = s1.rbegin( );
s1.erase ( *s1_rIter );
s1_rIter = s1.rbegin( );
cout << "After the erasure, the first element "
<< "in the reversed multiset is "<< *s1_rIter << "." << endl;
return 0;
}
输出:
The first element in the reversed multiset is 30.
The multiset is: 10 20 20 30
The reversed multiset is: 30 20 20 10
After the erasure, the first element in the reversed multiset is 20.
让我们看一个简单的示例来对最高分进行排序和计算:
#include
#include
#include
using namespace std;
int main ()
{
multiset marks = {410, 450, 465, 290, 410, 450};
cout << "Marks" << '\n';
cout<<"______________________\n";
multiset::reverse_iterator rit;
for (rit=marks.rbegin(); rit!=marks.rend(); ++rit)
cout << *rit<< '\n';
auto ite = marks.rbegin();
cout << "\nHighest Marks is: "<< *ite <<" \n";
return 0;
}
输出:
Marks
______________________
465
450
450
410
410
290
Highest Marks is: 465
在上面的示例中,实现了多集标记,其中标记是键。这使我们能够利用多集中的自动排序功能,并让我们识别最高分。 ,