C++ multiset rbegin() 函数用于返回引用多集容器最后一个元素的反向迭代器。
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 版本都不会访问multiset 修改multiset 容器。同时访问多重集的元素是安全的。
异常安全
此函数从不抛出异常。
例子1
让我们看看 rbegin() 函数的简单示例:
#include <iostream>
#include <set>
using namespace std;
int main ()
{
multiset<int> mymultiset= {20,10,20,40,10,30};
// show content:
cout<<"Elements are:"<<endl;
multiset<int>::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 多集中最后一个元素的反向迭代器。
由于多重集以键的排序顺序存储元素,因此迭代多重集将导致上述顺序,即键的排序顺序。
例子2
让我们看一个使用 while 循环以相反顺序迭代多重集的简单示例:
#include <iostream>
#include <set>
#include <string>
#include <iterator>
using namespace std;
int main() {
// Creating & Initializing a multiset of String
multiset<string> multisetEx = {"aaa", "ccc", "ddd", "bbb", "aaa", "bbb"};
// Create a multiset iterator and point to the end of multiset
multiset<string, int>::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() 函数初始化多重集的最后一个元素。
由于多重集以键的排序顺序存储元素,因此迭代多重集将导致上述顺序,即键的排序顺序。
例子3
让我们看一个简单的例子来获取反向多重集的第一个元素:
#include <set>
#include <iostream>
int main( )
{
using namespace std;
multiset <int> s1;
multiset <int>::iterator s1_Iter;
multiset <int>::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.
示例 4
让我们看一个简单的例子来排序和计算最高分:
#include <iostream>
#include <string>
#include <set>
using namespace std;
int main ()
{
multiset<int> marks = {410, 450, 465, 290, 410, 450};
cout << "Marks" << '\n';
cout<<"______________________\n";
multiset<int>::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
在上面的示例中,实现了多组标记,其中标记是键。这使我们能够利用多集中的自动排序,并让我们识别最高分。 ,
相关用法
- C++ multiset rbegin()、rend()用法及代码示例
- C++ multiset rend()用法及代码示例
- C++ multiset begin()、end()用法及代码示例
- C++ multiset value_comp()用法及代码示例
- C++ multiset emplace()用法及代码示例
- C++ multiset lower_bound()用法及代码示例
- C++ multiset crbegin()、crend()用法及代码示例
- C++ multiset insert()用法及代码示例
- C++ multiset max_size()用法及代码示例
- C++ multiset crbegin()用法及代码示例
- C++ multiset count()用法及代码示例
- C++ multiset find()用法及代码示例
- C++ multiset cbegin()用法及代码示例
- C++ multiset begin()用法及代码示例
- C++ multiset size()用法及代码示例
- C++ multiset get_allocator()用法及代码示例
- C++ multiset empty()用法及代码示例
- C++ multiset upper_bound()用法及代码示例
- C++ multiset cbegin()、cend()用法及代码示例
- C++ multiset equal_range()用法及代码示例
注:本文由纯净天空筛选整理自 C++ multiset rbegin()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。