void TestMap() { mapm; m.insert(pair ("sort", 1)); m.insert(pair ("sort", 2)); m.insert(pair ("quick", 5)); m.insert(pair ("hash", 1)); m.insert(pair ("map", 1)); m.insert(pair ("set", 1)); map ::iterator it = m.begin(); while (it != m.end()) { cout<<"key:"<< it->first.c_str() << " value:"< second< 成都地區(qū)優(yōu)秀IDC服務(wù)器托管提供商(創(chuàng)新互聯(lián)建站).為客戶提供專業(yè)的川西大數(shù)據(jù)中心,四川各地服務(wù)器托管,川西大數(shù)據(jù)中心、多線服務(wù)器托管.托管咨詢專線:18980820575
模擬字典
typedef mapDictMap; typedef DictMap::iterator DictMapIter; map dict; dict.insert(pair ("sort","排序")); dict.insert(pair ("hash", "哈希")); dict.insert(pair ("test", "測(cè)試")); dict.insert(pair ("erase", "錯(cuò)誤")); /*pair ret = dict.insert(pair ("erase", "刪除"));*/ //修改value的兩種方式 //1. //DictMapIter ret = dict.find("erase"); //if (ret != dict.end()) //{ // //ret->first = "delete"; // ret->second = "刪除"; //} //2 dict["erase"] = "刪除"; dict["erase"] = "錯(cuò)誤"; dict["delete"]; //T() dict["delete"] = "刪除";
網(wǎng)站題目:STL——map
標(biāo)題來源:http://weahome.cn/article/pcsgeh.html