Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
std::list.insert 在迭代器位置之前插入一个元素。如何在迭代器位置之后插入元素。
就是list::insert这样。在插入你的值之前增加你的迭代器:
list::insert
if (someIterator != someList.end()) { someIterator++; } someList.insert(someIterator, someValue);
使用功能:
itr = mylist.insert_after(Itr, value)
它将value在 指向的位置之后插入itr。
value
itr