搜索资源列表
ch10
- 数据结构(严慰敏)配套纯c代码实验十 typedef int InfoType // 定义其它数据项的类型 typedef int KeyType // 定义RedType类型的关键字为整型 struct RedType // 记录类型(同c10-1.h) { KeyType key // 关键字项 InfoType otherinfo // 其它数据项 } typedef char Ke
sllist
- 有些高级语言没有指针,我们可以用数组来表示单链表,在数组中以整型游标来代替指针。这种用数组描述的链表称为静态链表。
ch10
- 数据结构(严慰敏)配套纯c代码实验十 typedef int InfoType // 定义其它数据项的类型 typedef int KeyType // 定义RedType类型的关键字为整型 struct RedType // 记录类型(同c10-1.h) { KeyType key // 关键字项 InfoType otherinfo // 其它数据项 } typedef char Ke
sllist
- 有些高级语言没有指针,我们可以用数组来表示单链表,在数组中以整型游标来代替指针。这种用数组描述的链表称为静态链表。-Some high-level language without pointer, we can use the array to indicate the single-linked list, in the array to integer instead of the cursor pointer. This de
Huffman
- Huffman编码及译码 具体的要求: 1.将给定字符文件编码:生成编码,输出每个字符出现的次数和编码; 2.将给定编码文件译码:生成字符,输出编码及其对应字符。 -Huffman coding and decoding specific requirements: 1. A given character encoding files: generated code, the output of each cha
SLList
- Simple Linked List Implementation