字符串/map/set的操作
作者:互联网
截取其中一段字符串
str.substr(i,j-i); //长度是j-i
unordered_set s;
s.insert(d);
s.erase(d);
s.count(d)
s.find(d) ==s.end()
unordered_map<int,int>
根据value 寻找key
auto pos = hash.find(target - num);
if (pos == hash.end()) {
hash[num] = i;
map.insert(make_pair(5,5));
map.erase(‘java’);
标签:map,set,hash,pos,erase,字符串,find 来源: https://blog.csdn.net/ccc15327311512/article/details/120400852