map< 番地の型, 記録する型 > a;
a.clear() (初期化)
アクセスの計算量は O(logN)
2分探索の必要がないため、lower_boundと使うと速い
map<string, int> Map;
Map["algorithm"] = 1111;
cout << Map["algorithm"] << endl;
Go to list of users who liked
More than 1 year has passed since last update.
map< 番地の型, 記録する型 > a;
a.clear() (初期化)
アクセスの計算量は O(logN)
2分探索の必要がないため、lower_boundと使うと速い
map<string, int> Map;
Map["algorithm"] = 1111;
cout << Map["algorithm"] << endl;
Register as a new user and use Qiita more conveniently
Go to list of users who liked