搜索资源列表
Btree_library
- 数据结构课程源码,b树的示例代码。老师的示范程序-source data structure courses, b tree sample code. The model for teachers
listcount
- 第一次上传,这次上传的是一个链表容器的示例代码,通过这段代码您可以了解链表容器的数据结构
xuleizhizhenshiyong
- 虚基类中指针的使用 这是教您使用C中的虚基类中指针的使用的使示例代码
mokuanhualianbiao
- 模块化的链表的示例,如果您现在在学习模块化的链表那么这段代码对你会非常有意义
datastruct
- 数据结构与算法设计-C/C++描述两本书的所有示例程序标准代码。
Huffman
- 本目录下的源代码均属示例、教学性质。作者不对这些代码的功能和性能作任何担保或承诺。 -------- 功能说明 -------- 本目录下的程序用8种不同的方式实现了Huffman编码算法,这8种方式分别是 * huffman_a 使用链表结构生成Huffman树的算法,这是最基本的实现方法,效率最低。 * huffman_b 使用《数据结构》(严蔚敏,吴伟民,1997,C语言版)中给出的算法,将二叉树存放在连续空间里(静态链表),空间的每个结点内
datastruct_example
- 本人讲授数据结构课程时的所写的示例程序,结构清晰规范,有注释,全部可编译运行,包括如下代码: 长整数:ch0_bigint2.c 顺序表的实现:ch2_stable.c 链表的实现ch2_ltable.c 合并两个有序表:ch2_stable_merge.c 表达式计算:ch3_express.c 队列的链式实现:ch3_lqueue.c 栈的链式实现:ch3_lstack.c 迷宫求解:ch3_maze.c 队列的顺序实现:ch3_squeue.c
sort
- 对数据结构中的不同排序算法给出示例代码,完成排序工作-Itis a good code to sort!
DataStructure
- 非常多的数据结构算法示例代码,以及关于算法的描述文档。-some classic data Data Structure Algorithm code and descr iption.
Data-Structure
- 数据结构与算法,有C++编写的示例代码。-Data Structures and Algorithms, there are written in C++ sample code.
ex_pyevolve0_5
- Pyevolve是一个用python实现的遗传编程框架,这些代码是Pyevolve一些示例源程序-Pyevolve is a python implementation of genetic programming with the framework, some examples of these source code is Pyevolve
huffman
- 这是一个关于赫夫曼编码译码的应用示例代码-This is a Huffman code decoding application sample code
source_code_of_data_structure
- 各种数据结构及其简单功能实现的示例代码,包括队列、链表、栈、树、图等。-Various data structures and functions to achieve a simple example of code, including queues, linked lists, stacks, trees, graphs And so on.
SparseMatrix
- 稀疏矩阵的三元组存储及操作实现 【实验目的】 1. 调试运行课本中的第4章节的代码示例 2. 掌握矩阵的类定义及基本操作:构造矩阵、矩阵的寻址、矩阵的基本操作 3. 掌握矩阵的应用-Triples sparse matrix storage and operations to achieve
binary
- 使用PHP代码实现的二分查找算法,已经封装成方法,并有一个使用示例-Binary search algorithm implemented using PHP code has been encapsulated into methods, and there is a usage example
maze
- 完成迷宫程序的设计 从maze.txt文件读入迷宫。格式如下: 其中第一行为迷宫的阶数N,接下来是一个N*N的矩阵代表迷宫,0为路径,1为 障碍物。 实验要求 : 1. 打印迷宫: DisplayMaze()或者重载<< 其中(1,0)位置和(N-2,N-1)位置打印“=>,其余的1的位置打印“##”,0的位置 打印“ ”(两个空格),注意每个位置都是两个字符。 打印示例: 2. 寻找走出迷宫的路径并输出 FindPath() 输出格式为
DirectedGraph
- 改进DFS算法代码示例(判断是否是一个有向无环图)时间复杂度:O(n+e)-Improved DFS algorithm code examples (determine whether there is a directed acyclic graph) Time complexity: O (n+e)
fenliang
- pascal实现强连通分量的算法分析及代码示例-Algorithm analysis and code examples of strongly connected components of Pascal
short-path
- pascal实现各种单源最短路算法的分析对比及代码示例-Pascal implementation of a variety of single source shortest path algorithm analysis and comparison and code examples
967578
- 高效的k-means算法实现,使用了k-d树与局部搜索等提高k-means算法的执行效率,同时包含示例代码,用c++代码实()