资源列表
前序+中序_问答式输入生成二叉树
- 在计算机科学中,二叉树是每个节点最多有两个子树的树结构。通常子树被称作左子树和右子树。二叉树常被用于实现二叉查找树和二叉堆。该算法通过输入前序和中序生成二叉树(In computer science, a two tree is a tree structure with a maximum of two subtrees for each node. Usually the subtrees are called the left subtree and the right subtree.
singlelist
- 单链表的实现学习编程,仅仅实现了部分函数的功能,主函数没有任何意义-源语言: 中文 允许输入拉丁字符的拼音请键入文字或网站地址,或者上传文档。 取消 Dān liànbiǎo de shíxiàn xuéxí biānchéng, jǐnjǐn shíxiànle bùfèn hán shǔ de gōngnéng, zhǔ hánshù méiyǒu rènhé yìyì将中文译成英语 英语中文(简体)日语Learning program to achieve a single
myqueen
- 基于VC++6.0开发的八皇后问题求解源码-VC++6.0 based on the development of the eight queens problem solving source
PageProcedure-
- 模拟页式存储器管理程序(包含最佳置换、先进先出置换、最近最少使用置换算法)-Analog page memory management procedures (including the best replacement FIFO replacement, the least recently used replacement algorithm)
Graph
- 该程序是用MFC实现的图的相关的运算,其中包括了图的深度有限遍历,广度优先遍历,最短路径等基本运算。-The program is MFC implementation of graph-related operations, including the depth chart limited traversal, breadth-first traversal, shortest path, and other basic operations.
Test-Quicksort
- This the Quick sort source code. By using the OOP source code. Hope you like it!-This is the Quick sort source code. By using the OOP source code. Hope you like it!
贪心算法
- 贪心算法的详细说明,哈哈哈哈哈哈哈哈哈哈哈(Greedy algorithm is described in detail)
Data_struct
- 一些小的算法程序,包括很多具体问题的算法的解决方案。-data structprogramming
Clustering-procedure
- 非常好的各种聚类程序的实现,采用C++实现-Very good implementation of a variety of clustering procedures, the use of C++ implementation
数据结构实验2015
- 数据结构2015全部实验题详细解释与做法(Data structure experiment)
Heapsort
- 堆排序是指利用堆这种数据结构所设计的一种排序算法,它是选择排序的一种。可以利用数组的特点快速定位指定索引的元素。堆分为大根堆和小根堆,是完全二叉树。大根堆的要求是每个节点的值都不大于其父节点的值,即A[PARENT[i]] >= A[i]。在数组的非降序排序中,需要使用的就是大根堆,因为根据大根堆的要求可知,最大的值一定在堆顶。-Heapsort refers to a sorting algorithm data structure designed using the heap, it
SVD
- VC下奇异值分解,里面包含了所需的lib文件和头文件,及代码演示。dgesvd_函数的调用,参数A(一维数组)的赋值是关键点。比如对矩阵X(二维数组)奇异值分解,并不是直接将按X顺序赋值给A,而是需要将X转置后赋值给A,即A的内容是X的转置形式。-windows vc svd dgesvd_