C++ set rbegin() 函數用於返回引用集合容器最後一個元素的反向迭代器。
set 的反向迭代器以相反的方向移動並遞增它,直到它到達 set 容器的開頭(第一個元素)。
用法
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
參數
空
返回值
它返回一個反向迭代器(反向迭代器),它指向集合的最後一個元素。
複雜度
恒定。
迭代器有效性
沒有變化。
數據競爭
非常量和常量版本都不會訪問集合,不會修改集合容器。同時訪問集合的元素是安全的。
異常安全
此函數從不拋出異常。
例子1
讓我們看看 rbegin() 函數的簡單示例:
#include <iostream>
#include <set>
using namespace std;
int main ()
{
set<int> myset= {10,50,30,40,20};
// show content:
cout<<"Elements are:"<<endl;
set<int>::reverse_iterator rit;
for (rit=myset.rbegin(); rit!=myset.rend(); ++rit)
cout << *rit<< '\n';
return 0;
}
輸出:
Elements are: 50 40 30 20 10
在上麵的例子中, rbegin() 函數用於返回一個指向 myset 集合中最後一個元素的反向迭代器。
因為 set 以鍵的排序順序存儲元素,因此迭代集合將導致上述順序,即鍵的排序順序。
例子2
讓我們看一個使用 while 循環以相反順序迭代集合的簡單示例:
#include <iostream>
#include <set>
#include <string>
#include <iterator>
using namespace std;
int main() {
// Creating & Initializing a set of String
set<string> setEx = {"aaa", "ccc", "ddd", "bbb"};
// Create a set iterator and point to the end of set
set<string, int>::reverse_iterator it = setEx.rbegin();
// Iterate over the set using Iterator till beginning.
while (it != setEx.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 aaa
在上麵的例子中,我們使用 while 循環以相反的順序迭代集合,並使用 rbegin() 函數初始化集合的最後一個元素。
因為 set 以鍵的排序順序存儲元素,因此迭代集合將導致上述順序,即鍵的排序順序。
例子3
讓我們看一個簡單的例子來獲取反向集合的第一個元素:
#include <set>
#include <iostream>
int main( )
{
using namespace std;
set <int> s1;
set <int>::iterator s1_Iter;
set <int>::reverse_iterator s1_rIter;
s1.insert( 10 );
s1.insert( 20 );
s1.insert( 30 );
s1_rIter = s1.rbegin( );
cout << "The first element in the reversed set is "
<< *s1_rIter << "." << endl;
// begin can be used to start an iteration
// throught a set in a forward order
cout << "The set 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 set in a reverse order
cout << "The reversed set is:";
for ( s1_rIter = s1.rbegin( ) ; s1_rIter != s1.rend( ); s1_rIter++ )
cout << " " << *s1_rIter;
cout << endl;
// A set 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 set is "<< *s1_rIter << "." << endl;
return 0;
}
輸出:
The first element in the reversed set is 30. The set is:10 20 30 The reversed set is:30 20 10 After the erasure, the first element in the reversed set is 20.
示例 4
讓我們看一個簡單的例子來排序和計算最高分:
#include <iostream>
#include <string>
#include <set>
using namespace std;
int main ()
{
set<int> marks = {400, 350, 465, 290, 410};
cout << "Marks" << '\n';
cout<<"______________________\n";
set<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 410 400 350 290 Highest Marks is:465
在上麵的示例中,實現了設置標記,其中標記是鍵。這使我們能夠利用集合中的自動排序並識別最高分。
相關用法
- C++ set rend()用法及代碼示例
- C++ set upper_bound()用法及代碼示例
- C++ set swap()用法及代碼示例
- C++ set size()用法及代碼示例
- C++ set lower_bound()用法及代碼示例
- C++ set erase()用法及代碼示例
- C++ set find()用法及代碼示例
- C++ set end()用法及代碼示例
- C++ set cbegin()用法及代碼示例
- C++ set key_comp()用法及代碼示例
- C++ set equal_range()用法及代碼示例
- C++ set clear()用法及代碼示例
- C++ set begin()用法及代碼示例
- C++ set cbegin()、cend()用法及代碼示例
- C++ set count()用法及代碼示例
- C++ set max_size()用法及代碼示例
- C++ set crend()用法及代碼示例
- C++ set insert()用法及代碼示例
- C++ set emplace()用法及代碼示例
- C++ set value_comp()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ set rbegin()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。