数据结构_2:链表:STL

List

  • 双向链表
  • 环装双向链表
    • 提供: bidirectionalIteartors
  • 数据结构
template<class T>
struct _list_node
{
     typedef void *void_pointer;
     voide_pointer prev;
     void_pointer  next;
     T data;
}

你可能感兴趣的:(数据结构_2:链表:STL)