91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

STL——map

發布時間:2020-07-02 19:06:14 來源:網絡 閱讀:342 作者:小止1995 欄目:編程語言
void TestMap()
{
	map<string, int> m;
	m.insert(pair<string, int>("sort", 1));
	m.insert(pair<string, int>("sort", 2));
	m.insert(pair<string, int>("quick", 5));
	m.insert(pair<string, int>("hash", 1));
	m.insert(pair<string, int>("map", 1));
	m.insert(pair<string, int>("set", 1));

	map<string, int>::iterator it = m.begin();
	while (it != m.end())
	{
		cout<<"key:"<< it->first.c_str() << "  value:"<<it->second<<endl;
		++it;
	}
	cout << endl;
}

STL——map

模擬字典

typedef map<string, string> DictMap;
	typedef DictMap::iterator DictMapIter;

	map<string, string> dict;
	dict.insert(pair<string, string>("sort","排序"));
	dict.insert(pair<string, string>("hash", "哈希"));
	dict.insert(pair<string, string>("test", "測試"));
	dict.insert(pair<string, string>("erase", "錯誤"));
	/*pair<DictMapIter, bool> ret = 
		dict.insert(pair<string, string>("erase", "刪除"));*/
	//修改value的兩種方式
	//1.
	//DictMapIter ret = dict.find("erase");
	//if (ret != dict.end())
	//{
	//	//ret->first = "delete";
	//	ret->second = "刪除";
	//}
        
        //2
	dict["erase"] = "刪除";
	dict["erase"] = "錯誤";
	dict["delete"]; //T()
	dict["delete"] = "刪除";

STL——map

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

瓦房店市| 久治县| 绥滨县| 红河县| 秦安县| 惠水县| 安仁县| 丰县| 宜川县| 宝应县| 克山县| 拉萨市| 海丰县| 呈贡县| 阿克陶县| 唐河县| 兴文县| 定州市| 凯里市| 红桥区| 金昌市| 曲松县| 和田市| 惠来县| 环江| 册亨县| 广丰县| 中西区| 正宁县| 临沂市| 栾川县| 泸州市| 北安市| 南开区| 远安县| 阜平县| 贵阳市| 调兵山市| 大港区| 钦州市| 无为县|