搜索资源列表
huffman
- 声明定义链表结构,创建线性表,打印链表元素
HFandMATH
- 里面包括: 哈夫曼编码,算术编码,行程编码,学生信息管理的线性链表等-Which include: Huffman coding, arithmetic coding, Run-Length Coding, student information management, such as a linear list
1234
- 输入一页文字,程序可以统计出文字、数字、空格的个数。 静态存储一页文章,每行最多不超过80个字符,共N行;要求(1)分别统计出其中英文字母数和空格数及整篇文章总字数;(2)统计某一字符串在文章中出现的次数,并输出该次数;(3)删除某一子串,并将后面的字符前移。 存储结构使用线性表,分别用几个子函数实现相应的功能; 输入数据的形式和范围:可以输入大写、小写的英文字母、任何数字及标点符号。 -count
yuandaima
- 用Turboc编写线性表的源代码 实现插入和删除的功能,也可以在VC里运行。具有线性表典型的功能~-Turboc prepared with the source code to achieve a linear table insertion and deletion functions, but also to run in the VC. A typical linear function of the table ~
The-linear-table
- 通过c语言知识,让你轻松了解线性表的特点,以及它的规律-Through the c language knowledge, let you easily understand the characteristics of the linear table, and its regularity
sqlist
- 顺序表操作,显示数据(遍历线性表),修改数据(提供位置和新值), 插入数据(提供位置和新值,.删除数据,读取数据(提供位置),数据反转,求表长度-Order table operation, display data (traverse linear meter), modify the data (position and provide new value), insert data (position and provide new value, delete data, read dat
guanli
- 双链表的创建。此双链表要求为带头节点的,为了算法方便特采用了循环双链表。通过编程发现带头节点的也有其不便之处。为了保持表的一直有序性思考如下: 1:表的一开始的创建就要有序。 2:插入元素后要做到仍然有序。 3:删除元素不会改变表的有序性 4:所谓有序,即为非降序或者非升序排列。 5:为了做到以上几点,考虑到链表的不易排序性质,特设置一个线性表作为输入缓存空间进行事先排序。关于排序的方法有多种,为了快速完成采用了较为简单的插入排序。-The data structure of double li