C++ Primer笔记——unqiue、插入迭代器、流迭代器、insert返回值、关联容器的删与查
目录一.P343unique二.P358插入迭代器三.P359iostream迭代器四.P384检测insert的返回值(关联容器)五.P386删除元素(关联容器)六.P387map的下标操作一.P343uniqueunqiue函数会将容器相邻的元素的重复项“删除”。vectorv={1,2,3,3,3,4,4,5};unique(v.begin(),v.end());for(auton:v)co