0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

C++のmapで後ろからループを回すとき

Last updated at Posted at 2021-05-29
イテレータを使ったループ
map<int,int> mp;
for(auto it = mp.begin(); it != mp.end(); it++){
    // hoge
}

range-based-forを使ったループ
map<int,int> mp;
for(auto val : mp){
    // hoge
}

前からのループは書けるが後ろからのループはどうやって書いたらいいのか分からなかったのですが、ちょうどいいのを見つけました。

https://cpprefjp.github.io/reference/map/map/rbegin.html

mp.end()-1からmp.begin()までイテレータをデクリメントするよりもこっちの方がよい気がします。

mp.rbegin()を使ったループ
map<int,int> mp;
for(auto it = mp.rbegin(); it != mp.rend(); it++){
    // hoge
}

it++するのが驚きです。 なんでit--じゃないのだろう。

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?