不积跬步无以至千里,不积小流无以成江海 不要让犹豫占太多时间
Removes an element or a range of elements in a list from specified positions.(从指定的位置,移除list中一个元素,或者是移除一块区域的元素)
Return Value: A bidirectional iterator that designates the first element remaining beyond any elements removed, or a pointer to the end of the list if no such element exists. 我的理解是:一个双向的迭代器指向移除元素或元素块的 下一个存在在元素。or 当在该list 中没有找到要删除的元素,那么将指向 end.如果我想在一个list中保存 1---10,然后查找并且 删除5 的代码 应该是