搜索资源列表
SkipList
- 分级链表(Skiplists)数据结构的实现-Categorization List (Skiplists) data structure to achieve
数据结构的C++描述
- 目 录 译者序 前言 第一部分 预备知识 第1章 C++程序设计 1 1.1 引言 1 1.2 函数与参数 2 1.2.1 传值参数 2 1.2.2 模板函数 3 1.2.3 引用参数 3 1.2.4 常量引用参数 4 1.2.5 返回值 4 1.2.6
SkipList
- SKiplist是一种概率应用于平衡树的替换数据结构。-Skip list is a probabilistic alternative to balanced trees that provide much of the simplicity of unbalanced trees , togethere with good worst-case expected performance.
skiplist
- 跳跃表Skip List的具体实现,注释详细-Skip List jump table to achieve the specific, detailed comments
SkipList
- A skip list is a data structure for storing a sorted list of items, using a hierarchy of linked lists that connect increasingly sparse subsequences of the items. These auxiliary lists allow item lookup with efficiency co
dictionary-skiplist-hashtable
- 数据结构的C++实现:字典的链表实现、线性开型寻址散列、链表散列(环境:VS2008)-C++ data structures to achieve: a dictionary of the list to achieve a linear open addressing hash based, hash list (Environment: VS2008)
skiplist.c.tar
- A skip list is a data structure for storing a sorted list of items, using a hierarchy of linked lists that connect increasingly sparse subsequences of the items. These auxiliary lists allow item lookup with efficiency co
skiplist
- 跳转表,随机化的数据结构.插入logn,查询logn.但是占用空间较大.-skip list
SkipList
- Skiplists是由威廉普格发明的快速关联集合。键/值对添加到skiplist容器和值,这可以让数值搜索极为迅速。程序是建立在一个非常通用的, Bruno Grossniklaus 写的C,然后转换成C+ +类库的基础上。-Skiplists are fast associative collections invented by William Pugh. Key/Value pairs are added to skiplist
skiplist
- 实现c++数据结构中的跳表,是一种特殊形式的单链表, 运算较快-it realize the skiplist data stucture, which is a special kind of list calculating in a faster speed
skipLists
- skiplist 的实现和原理,勉强凑点字数,哎哎哎啊-implementation and principle of skiplist, barely scrape together the point of words, arrr ah
skiplist
- Thread-safe Skiplist Using Integer Identifiers.
skiplist
- 对磁盘中的文件进行SkipList结构构建,并进行快速查找、快速删除、快速插入、快速保存及快速恢复等操作-The files on the disk structure SkipList build, and to quickly find, quickly delete, quickly insert, quick save and quick recovery operations
Skiplist
- java Skip List,简单制作java skip list-java Skip List
skepTable
- skipList,跳表。使用c++实现,无测试用例,可直接加到项目中使用-skipList,can be directly put into projects.
skiplist
- 跳表的实现 哈工大软件设计与开发 优秀代码 分享交流 excellent coding for studying- excellent coding for studying
skiplist
- skiplist 的实现 和测试 跳表的,基本功能- skiplist implementation and testing
SkipList
- 跳表是一种数据结构,允许快速查询一个有序连续元素的数据链表。用跳表来完成基本的插入删除查找的功能(Use jump table to complete the basic insert delete search function)