- multiset::rbegin()是C++ STL中的內置函數,該函數返回指向多重集容器中最後一個元素的反向迭代器。
用法:
reverse_iterator multiset_name.rbegin()
參數:該函數不帶任何參數。
返回值:該函數返回指向容器中最後一個元素的反向迭代器。
以下示例程序旨在說明multiset::rbegin()方法:
// CPP program to demonstrate the // multiset::rbegin() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 15, 12, 15, 11, 10, 10 }; // initializes the set from an array multiset<int> s(arr, arr + 6); multiset<int>::reverse_iterator rit; // prints all elements in reverse order for (rit = s.rbegin(); rit != s.rend(); rit++) cout << *rit << " "; cout << "\nThe last element in multiset is " << *(s.rbegin()); return 0; }
輸出:15 15 12 11 10 10 The last element in multiset is 15
- multiset::rend()在C++ STL的內置函數中,該函數返回一個反向迭代器,該迭代器指向多集容器中第一個元素之前的理論元素。
用法:
reverse_iterator multiset_name.rend()
參數:該函數不接受任何參數。
返回值:該函數返回一個反向迭代器,該迭代器指向多集容器中第一個元素之前的理論元素。
以下示例程序旨在說明multiset::rend()函數:
// CPP program to demonstrate the // multiset::rend() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 15, 13, 15, 11, 13, 10 }; // initializes the set from an array multiset<int> s(arr, arr + 6); multiset<int>::reverse_iterator rit; // prints all elements in reverse order for (rit = s.rbegin(); rit != s.rend(); rit++) cout << *rit << " "; return 0; }
輸出:15 15 13 13 11 10
相關用法
- C++ vector rbegin()、rend()用法及代碼示例
- C++ list rbegin()、rend()用法及代碼示例
- C++ set::rbegin()、set::rend()用法及代碼示例
- C++ array::rbegin()、array::rend()用法及代碼示例
- C++ map rend()用法及代碼示例
- C++ map rbegin()用法及代碼示例
- C++ map rbegin()用法及代碼示例
- C++ deque rend()用法及代碼示例
- C++ deque rbegin()用法及代碼示例
- C++ multiset begin()、end()用法及代碼示例
- C++ multiset count()用法及代碼示例
- C++ multiset emplace_hint()用法及代碼示例
- C++ multiset insert()用法及代碼示例
- C++ multiset clear()用法及代碼示例
- C++ multiset find()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 multiset rbegin() and rend() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。