【数据结构(C++实现)】:单链表、双向链表、STL中的list容器

目录node 单链表ios 双向链表数据结构 STL中的list函数 单链表 单链表的结构 头文件(List.h) /*数据结构:单链表*/ #ifndef LIST_H #define LIST_H #include <iostream> using namespace std; typedef int ElementType;//定义数据类型 class Node{//定义链表节点 pu
相关文章
相关标签/搜索