logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

STL中list详解

std::listLists are sequence containers that allow constant time insert and erase operations anywhere within the sequence, and iteration in both directions.实际上,list容器就是一个双向链表,可以高效地进行插入删除元素。stdli

到底了