iterator idx);//在迭代器处插入元素,返回插入处迭代器voidpush_back(constT x);//在末尾插入元素voidpush_front(constT x);//在头部插入元素iterator erase(iterator idx);//删除迭代器处元素,返回删除元素的后一个迭代器voiderase(intidx);//删除索引元素voidpop_back();//删除末尾...