1//set/multiset 容器//set不可以插入重复的数字 multiset可以插入重复的数字2//ste容器构造和赋值//set大小和交换//set 插入和删除3//set查找和统计//set 和 multiset 区别4//pair 对组创建//set存放自定义数据类型//set内置数据 进行排序567#include<iostream>8#include<string>9#include<set>1011usingnamesp...