>>704
いや、ordered_が付かないmapやsetは、順序で並び替えることも定義の一部になっていて、
範囲forで巡ると、挿入した順序ではなく、比較関数で比較した結果に基いてソートされた順序になる。
https://stackoverflow.com/questions/7648756/is-the-order-of-iterating-through-stdmap-known-and-guaranteed-by-the-standard
Yes, that's guaranteed. Moreover, *begin() gives you the smallest
C++
・std::map is a sorted associative container
https://stackoverflow.com/questions/11274978/are-c-stdmapstring-string-ordered
are STL maps ordered?
Yes, a std::map<K,V> is ordered based on the key, K, using std::less<K> to compare objects, by default.
So if I iterate over it, it will iterate with the first insert string first?
No. It will iterate based on the sorted order, not the order that you inserted elements. In the case of std::string, it sorts in lexicographic order (alphabetic order).
If you want to iterate based on the insertion order, you're better off using a sequence container, such as a std::vector or a std::list.
探検
C++相談室 part162
■ このスレッドは過去ログ倉庫に格納されています
727デフォルトの名無しさん (オイコラミネオ MM7b-VZV0)
2022/12/14(水) 18:13:49.08ID:ekFaWlb/M■ このスレッドは過去ログ倉庫に格納されています
ニュース
- 2025/11/29(土) 17:45:26.27 ID:z7W38XEQ0<> <a href="../test/read.cgi/newsplus/1764400793/420" rel="noopener noreferrer" target="_blank">>>420</a> <br> それ以外は何も止められてないならイオンも当然何の問題も無い <>
- アミューズが同性婚訴訟への声明を発表「誰もが良く生きられる自由」を目指す、東京高裁の判決を受け [muffin★]
- 「まだ朝7時に通勤してるんですか?」にじさんじVTuberがXの投稿で炎上、YouTubeで釈明と謝罪 [muffin★]
- 【地方】「もうヤメとけ、また移住者様が帰っちゃうぞ」田舎の「いじめ体質」★2 [七波羅探題★]
- 【公明党】派遣型風俗店の女性の裸をスマホで盗撮か 徳島県議会議員の古川広志容疑者逮捕 警視庁 [nita★]
- 橋下徹氏 高市首相“台湾有事”発言に「政治家の失言で一部の人でも仕事がキャンセルに…我々は認めていいのかな」疑問呈す★2 [muffin★]
- 【実況】博衣こよりのえちえちスターセイヴァー🧪
- 鈴木農相「お米券でパスタやお菓子も買えるようにします☺」・・・???😰 [931948549]
- 【速報】女子中学生のテストの点数、流出してしまうww [347751896]
- 【朗報】高市政権、大いに評価する58.5%全く評価しない30.1% [834922174]
- 【悲報】森永卓郎「東京に住むより立川とか小金井とか地方都市に住んだ方がコスパいいよ」都民に効きすぎて大炎上wwwww [786648259]
- 余る新米「国が買い取って」卸売業者ら [177178129]
