#include <map>
#include <string>
#include <iostream>
using namespace std;
int main()
{
///1. 初始化
multimap<int, string> mapStudent;
multimap<int, string>::iterator iter, beg, end;
///2. 添加元素
///multimap不支持下標(biāo)操作
mapStudent.insert(pair<int, string>(0, "student_one"));
mapStudent.insert(pair<int, string>(0, "student_one_copy"));///一對(duì)多
mapStudent.insert(pair<int, string>(1, "student_two"));
mapStudent.insert(pair<int, string>(5, "Fear Kubrick"));
mapStudent.insert(pair<int, string>(2, "Akemi Homura"));
mapStudent.insert(pair<int, string>(-1, "Eren Jaeger"));
mapStudent.insert(pair<int, string>(99, "lin"));
cout << mapStudent.size() << endl;
cout << endl;
///3. 遍歷
for (iter = mapStudent.begin(); iter != mapStudent.end(); iter++)
cout << iter->first << " " << iter->second << endl;
cout << endl;
///4. 單鍵查詢與范圍查詢
///單鍵查詢
int count = mapStudent.count(0);
iter = mapStudent.find(0);
for (int i = 0; i < count; i++, iter++)
cout << iter->first << " " << iter->second << endl;
cout << endl;
///范圍查詢
beg = mapStudent.lower_bound(1);/// >=1
end = mapStudent.upper_bound(5);/// <=5
for (; beg != end; beg++)
cout << beg->first << " " << beg->second << endl;
cout << endl;
///5. 刪除
iter = mapStudent.find(1);
mapStudent.erase(iter);
cout << mapStudent.size() << endl;
for (iter = mapStudent.begin(); iter != mapStudent.end(); iter++)
cout << iter->first << " " << iter->second << endl;
cout << endl;
///6. 判空與清空
if (!mapStudent.empty())
mapStudent.clear();
}
C++ STL 練手(multimap的使用)
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門盐碱,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人沪伙,你說(shuō)我怎么就攤上這事瓮顽。” “怎么了围橡?”我有些...
- 文/不壞的土叔 我叫張陵暖混,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我翁授,道長(zhǎng)拣播,這世上最難降的妖魔是什么? 我笑而不...
- 正文 為了忘掉前任收擦,我火速辦了婚禮贮配,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘塞赂。我一直安慰自己泪勒,他們只是感情好,可當(dāng)我...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著酣藻,像睡著了一般曹洽。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上辽剧,一...
- 那天送淆,我揣著相機(jī)與錄音,去河邊找鬼怕轿。 笑死偷崩,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的撞羽。 我是一名探鬼主播阐斜,決...
- 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼诀紊!你這毒婦竟也來(lái)了谒出?” 一聲冷哼從身側(cè)響起,我...
- 序言:老撾萬(wàn)榮一對(duì)情侶失蹤邻奠,失蹤者是張志新(化名)和其女友劉穎笤喳,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體碌宴,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡杀狡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了贰镣。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片呜象。...
- 正文 年R本政府宣布休玩,位于F島的核電站,受9級(jí)特大地震影響楼入,放射性物質(zhì)發(fā)生泄漏哥捕。R本人自食惡果不足惜,卻給世界環(huán)境...
- 文/蒙蒙 一嘉熊、第九天 我趴在偏房一處隱蔽的房頂上張望遥赚。 院中可真熱鬧,春花似錦阐肤、人聲如沸凫佛。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)愧薛。三九已至晨炕,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間毫炉,已是汗流浹背瓮栗。 一陣腳步聲響...
- 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像进陡,于是被迫代替她去往敵國(guó)和親愿阐。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
推薦閱讀更多精彩內(nèi)容
- vector的使用 list的使用 deque的使用 set的使用 map的使用 multiset的使用 mult...
- vector的使用 list的使用 deque的使用 set的使用 map的使用 multiset的使用 mult...
- vector的使用 list的使用 deque的使用 set的使用 map的使用 multiset的使用 mult...
- vector的使用 list的使用 deque的使用 set的使用 map的使用 multiset的使用 mult...
- 醉了 沒(méi)有月亮的晚上 江河的另一邊 你還在唱情歌嗎 醉了 聽說(shuō)風(fēng)已然入睡 三十九度的子夜啊 心事赤裸裸 醉了 這一...