C++ map的用法

map的增加元素,刪除元素,查找元素操作

#include<map>
#include<iostream>

using namespace std;

int main()
{
    map<string, string> a; //定義一個(gè)map
    map<string, string>::iterator iter; 
    cout << "-----------增加元素" << endl;
    a["cat"] = "貓";
    // a["dog"] = "gou";
    a.insert(pair<string, string>("dog", "狗"));
    a.insert(pair<string, string>("fish", "魚"));
    cout << a["cat"] << endl;
    cout << a["dog"] << endl;
    cout << a["fish"] << endl;
    cout << "------------刪除元素" << endl;
    iter = a.find("fish");
    a.erase(iter); // 使用迭代器刪除 
    int n = a.erase("dog"); // 使用key刪除 
    cout << "是否刪除dog成功?:" << n << endl;
    // a.erase(a.begin(), a.end()); // 全部刪除, == a.clear() 
    // a.clear(); // 全部刪除 
    
    cout << "-------------查找元素" << endl;
    iter = a.find("cat");
    if(iter != a.end())
    {
        cout << "I find it" << endl;
        cout << iter->first << endl;
        cout << iter->second << endl;
    }
    else
    {
        cout << "Do not Find" << endl;
    }
    return 0;
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容