map中插入元素:
1、map[key]=value;
2、map.insert(make_pair(key,value));
3、pair1 = m.insert(pair<int,string>(key,value));
set中插入元素:
s.insert(value);