搜索资源列表
Some_DataStruct_Arithmetic_Implement_by_C
- 1 归并链表 2 静态链表 3 堆栈 4 KMP模式匹配 5 排序 6 关键路径-a static Chain Chain 2 3 4 stack KMP Ranking 6 5 Critical Path
Huffman 算法的不同实现
- ---- Huffman 算法的不同实现 本目录下的程序用8种不同的方式实现了Huffman编码算法,这8种方式分别是 * huffman_a 使用链表结构生成Huffman树的算法,这是最基本的实现方法,效率最低。 * huffman_b 使用《数据结构》(严蔚敏,吴伟民,1997,C语言版)中给出的算法,将二叉树存放在连续空间里(静态链表),空间的每个结点内仍有左子树、右子树、双亲等指针。 * huffman_c 使用Canonical
4
- 哈夫曼编码是一种编码方式,它是根据每一个字符出现的概率而建立起来的。哈夫曼编码借助树形结构构造,算法实现时使用链表或静态链表结构,空间的每个结点内有左子树、右子树、双亲指针。在构成哈夫曼树之后,为求编码需从叶子结点出发走一条从叶子到根的路径;而为译码需从根出发走一条从根到叶子的路径。
Sherwood
- Sherwood算法消除最坏实例,以达到对任何实例都能有好的性能的效果 文件: rd_list.c --> create a random sequence of n integers not equal to each other list.c --> create a descending sequence of n integers not equal to each other sherwood.c --> 就是该算法,静态链表的长度默
ch10
- 数据结构(严慰敏)配套纯c代码实验十 typedef int InfoType // 定义其它数据项的类型 typedef int KeyType // 定义RedType类型的关键字为整型 struct RedType // 记录类型(同c10-1.h) { KeyType key // 关键字项 InfoType otherinfo // 其它数据项 } typedef char KeysType // 定义关键字类型为字符型 #incl
sllist
- 有些高级语言没有指针,我们可以用数组来表示单链表,在数组中以整型游标来代替指针。这种用数组描述的链表称为静态链表。
CRAMSave
- 此程序是一个模板类,主要改善大型数据的操作,效率很高,用的是静态链表的原理
sort
- 这是关于数据结构书中经常介绍的排序算法的具体实现,包含希尔排序、快速排序、对排序、归并排序、静态链表排序、改进的冒泡算法排序等,并且附有时间统计
jtsz_1_debug
- 静态链表.这是刚刚学习数据结构的时候编写的第1个小小程序,用构造类型编写的静态链表,实现了基本的赋值,插入,删除等功能。-static List. This is just learning the structure of the data, prepared by the time a small program that will prepare the structure type static chain and achieve the basic assignment, insert
jtsz_2_Debug
- 静态链表.与上一个基本相似,所不同的是用的静态数组编写的静态链表,实现了基本的赋值,插入,删除等功能。-static List. And on a basic similarity, difference is the use of static arrays prepared by the static chain and the realization of basic assignment, insert, delete capabilities.
静态链表求集合对称差
- 静态链表求集合对称差 c语言程序
The-program-of-data-structure
- 数据结构的例子程序,包含循环队列、链表队列、线性链表、静态链表、堆栈等的实现。-Examples of program data structures, including circular queue, linked list queue, linked list, static list, stack, etc. to achieve.
staticlink
- 用静态链表实现集合(A-B)U(B-A)-The realization of a collection using the static list (AB) U (BA)
SLinklist
- 静态链表,c++语言描述,数据结构示范,模板类-staticlinnkedlist
jtlbbs
- 此程序是一个静态链表示例,第一个结点的位置在[0].cur中,成员cur的值为0,则到链表尾,通过此程序掌握静态链表的相关操作-This procedure is an example of a static list, the first node in the location [0]. Cur in cur a member of the value of 0, then the end of the list, through this program have a static lis
StaticList
- 数据结构(清华第2版)中,可重用的静态链表类-Data structure (Tsinghua 2nd edition), the reusable static linked list Class
listinarray
- 实现一个静态链表,静态链表是一种很高效的数据结构,同时具备链表和线性表的优点-To achieve a static list, static list is a very efficient data structure, at the same time have the advantages of linked lists and linear form
Joseph
- 约瑟夫问题,四种解法,分别是静态链表,顺序表两种和循环链表-Joseph problems, the four solution, namely a static list, order form and the cycle of two lists
研讨1
- 用c++实现静态链表,两个链都有头结点的情况,实现添加、删除元素(To implement a static list with c++, two chains have a head node)
第3章线性表
- 基于c语言的线性表代码,包含线性表的顺序存储、链式存储、静态链表(Linear table code based on C language, including sequential storage, chain storage, and static list of linear tables.)