文件名称:datastr
介绍说明--下载内容均来自于网络,请自行研究使用
数据结构
array.h: 安全数组,可自动增长大小(随机访问,但扩充时效率低)
linkedlist.h: 普通链表(可随机访问,但访问效率低)
dclinkedlist: 双向循环链表(不可随机访问,但插入、遍历的效率都比普通链表高)
hashtable.h: 哈希表(使用键值标识元素,键值一样的元素即认为相等,需重载 == 运算符并由用户定义哈希函数)
binstree.h: 二叉搜索树(需重载 == 和 < 运算符)
avltree.h: AVL 树(需重载 == 和 < 运算符)-data structure array.h : security arrays can be automatically size (random access, but expanded inefficient) linkedlist.h : General Linked List (available random access, the visit inefficient) dclinkedlist : two-way cycle Chain (non-random access, insertion, Traversing the efficiency higher than ordinary Chain) hashtable.h : Hash Table (using keys logo elements, keys to the same element that is considered equal. take Heavy == Operators Hash with user-defined functions) binstree.h : Binary Tree Search (and required heavy ==
array.h: 安全数组,可自动增长大小(随机访问,但扩充时效率低)
linkedlist.h: 普通链表(可随机访问,但访问效率低)
dclinkedlist: 双向循环链表(不可随机访问,但插入、遍历的效率都比普通链表高)
hashtable.h: 哈希表(使用键值标识元素,键值一样的元素即认为相等,需重载 == 运算符并由用户定义哈希函数)
binstree.h: 二叉搜索树(需重载 == 和 < 运算符)
avltree.h: AVL 树(需重载 == 和 < 运算符)-data structure array.h : security arrays can be automatically size (random access, but expanded inefficient) linkedlist.h : General Linked List (available random access, the visit inefficient) dclinkedlist : two-way cycle Chain (non-random access, insertion, Traversing the efficiency higher than ordinary Chain) hashtable.h : Hash Table (using keys logo elements, keys to the same element that is considered equal. take Heavy == Operators Hash with user-defined functions) binstree.h : Binary Tree Search (and required heavy ==
(系统自动生成,下载前可以参看下载内容)
下载文件列表
压缩包 : 119128665datastr.rar 列表 datastr\array.h datastr\avltree.h datastr\avltreenode.h datastr\binstree.h datastr\dclinkedlist.h datastr\dnode.h datastr\hashtable.h datastr\linkedlist.h datastr\node.h datastr\treenode.h datastr\说明.txt datastr