std::list<T,Allocator>::rbegin, std::list<T,Allocator>::crbegin
From cppreference.com
| reverse_iterator rbegin(); |
(1) | (C++11 以降 noexcept) |
| const_reverse_iterator rbegin() const; |
(2) | (C++11 以降 noexcept) |
| const_reverse_iterator crbegin() const noexcept; |
(3) | (C++11以降) |
逆順にされたlistの最初の要素への逆イテレータを返します。これは、逆順ではないlistの最後の要素に対応します。listが空の場合、返されるイテレータはrend()と等しくなります。
目次 |
[編集] 戻り値
最初の要素へのリバースイテレータ。
[編集] 計算量
定数。
[編集] 注記
返される逆イテレータの基底イテレータは、endイテレータです。したがって、返されるイテレータは、endイテレータが無効になったときに無効になります。
libc++はC++98モードにcrbegin()をバックポートしています。
[編集] 例
このコードを実行
#include <algorithm> #include <iostream> #include <numeric> #include <string> #include <list> int main() { std::list<int> nums{1, 2, 4, 8, 16}; std::list<std::string> fruits{"orange", "apple", "raspberry"}; std::list<char> empty; // Print list. std::for_each(nums.rbegin(), nums.rend(), [](const int n) { std::cout << n << ' '; }); std::cout << '\n'; // Sums all integers in the list nums (if any), printing only the result. std::cout << "Sum of nums: " << std::accumulate(nums.rbegin(), nums.rend(), 0) << '\n'; // Prints the first fruit in the list fruits, checking if there is any. if (!fruits.empty()) std::cout << "First fruit: " << *fruits.rbegin() << '\n'; if (empty.rbegin() == empty.rend()) std::cout << "list 'empty' is indeed empty.\n"; }
出力
16 8 4 2 1 Sum of nums: 31 First fruit: raspberry list 'empty' is indeed empty.
[編集] 関連項目
| (C++11) |
末尾への逆イテレータを返す (public メンバ関数) |
| (C++14) |
コンテナまたは配列の先頭を指す逆順イテレータを返す (function template) |