C++ STL容器之forward_list
C++ forward_list 容器定义于头文件 <forward_list>,申明为 template< class T, class Allocator = std::allocator<T>> class forward_list;std::forward_list 是支持从容器中的任何位置快速插入和移除元素的容器。不支持快速随机访问。它实现为单链表...