搜索资源列表
minheap vs minleftisttree
- 这是一个用C++编写的代码,实现了最小堆和最小左偏树在插入删除元素性能方面进行比较. -This is a preparation of the C code, the smallest and youngest sculpture tree in the left side inserted delete elements performance comparisons.
RBTree
- 使用VS.NET开发的数据结构红黑树可视化图形界面演示。可以进行节点的添加及删除。-use VS.NET development of the data structure RED-BLACK TREE visual graphical interface demo. The nodes can be added and deleted.
huffman-src
- 8种不同的方式实现了Huffman编码算法,使用Visual Studio .NET(建议使用VS .NET 2003或以上版本)或 gcc 3-eight different ways to achieve the Huffman coding algorithm, Visual Studio.NET (recommended VS.NET 2003 or later) or gcc 3
BPlusTree
- B+树的演示程序,在vs.net 2003 下编译通过。是数据库基础的课程设计。
biaodashiqiuzhi
- 题目:设计一个题目,演示用算符优先法对算术表达式求值的过程。 概要设计 1、顺序扫描中缀算术表达式,当读到数字时直接将其送至输出队列中; 2、当读到运算符时,将栈中所有优先级高于或等于该运算符弹出,送至输出队列中,再将当前运算符入栈; 3、当读入左括号时,即入栈; 4、当读到右括号时,将靠近栈顶的第一个左括号上面的运算符全部一次弹出,送至输出队列中,再删除栈中的左括号。 5、使用VS栈来存储读入的操作和运算结果,然后进行数字字符到数值的转换。
dcce1
- 使用tc2的adaptive huffman编码,并附带图形界面-use of adaptive vs. Huffman coding, and incidental graphical interface
hashtable
- 一个哈希查找算法,用c实现, gcc编译 如果使用vs可能会提示少stdint.h-A hash search algorithm, with c and gcc compiler to achieve, if you are using VS , you may get a "can t find stdint.h",
poj2485
- 北大2485的简单题目。用了最小生成树,在VS上编译,并成功提交。-2485 North of the easy topics. Used the minimum spanning tree, at VS on the compiler, and successfully submitted.
DS_ADT
- 用到Queue和Stack這兩個資料結構 ,已經寫好放在同個資料夾底下 , 有兩個檔案 : ADT.h 和 ADT.cpp , 同時還提供了一個洗牌的函式 1. 連結Header Files - 首先我們要同時使用多個檔案來跑程式的話 , 就需要建立一個專案檔。 VS.net 2005 因為一定要建專案才能跑 , 所以只要在標頭檔(Header Files)按 右鍵 , 把這兩個檔案加進來就可以了。在主程式要記得 #include “ADT.h” , 才可以使用
Dijkstra
- Dijkstra算法思想:每次从V-S取出具有最短特殊路径长度的顶点u,将u添加到S中同时对数组dist作必要的修改,一旦s包含了所有v中顶点,dist就记录了从源到其他顶点之间的最短路径长度。-Dijkstra Algorithm idea: Every time out from the VS special path with the shortest length of vertex u, u will be added to the S in the same time, make t
KMP
- KMP algorithm code use .VS 6.0 for c-KMP algorithm code use .VS 6.0 for c
binarytree
- binary tree code use VS 6.0 for c
LECalculator
- 求解线性方程算法,vs下以调通,可以运行测试-Algorithm for solving linear equations, vs the next to bring up the pass, you can run the test
qsort_cilk
- 是使用cilk扩展的快速排序算法,在安装了Intel parallel studio的VS上,可以看出计算的速度大大提高!-The rapid expansion of the use of cilk sorting algorithm, the installation of the Intel parallel studio in VS, you can see that greatly improved the speed of calculation!
flower
- 求水仙花数的源码,vs文件,已经编译。可以帮助复习算法。-The source seeking a few daffodils
Joseph-ring-on-vs-2011
- C++链表解决约瑟夫环问题,问题描述:假设有N个小孩按照序号1,2,,,N围坐成一圈,从第一个小孩开始报数,每次报到n的人退出,接着从下一个人重新开始从1开始报数,下一次再报到n的人退出, 求最后一个留下第几个人;-C++ linked list to solve the problem Josephus, described the problem: Suppose there are N children according to number 1,2,,, N sitting in a
data-struct
- 数据结构与算法 最短路径算法 最小生成树-Data Structures and Algorithms shortest path minimum spanning tree algorithm
432324324
- 约瑟夫问题C++和测试报告,这是在3月份编写的用VS C++制作的项目,您可以把代码直接复制到CPP文件中运行-Joseph problems C++ and test reports
DataMining
- 本算法的代码在VS中,使用C#语言编写,算法是数据挖掘中一个经典的colocation算法。-The algorithm code in VS, use the C# language, data mining algorithms is a classic colocation algorithm.
danyuanzuiduanlujing
- Dijkstra算法是解单源最短路径问题的贪心算法。其基本思想是,设置顶点集合点集合S并不断地做贪心选择来扩充这个集合。一个顶点属于集合S当且仅当从源到该顶点的最短路径长度已知。初始时,S中仅含有源。设u是G的其一顶点。把从源到u且中间只经过S中顶点的路称为从源到u的特殊路径,并用数组Distance记录当前每个顶点所对应的最短特殊路径长度。Dijkstra算法每次从V-S中取出具有最短特殊路长度的顶占,Distance就记录了从源到所有其它顶点之间最短路径长度。-Dijkstra algori