资源列表
qinghuauniversitysdatastructure
- 清华大学数据结构c++版的代码,很稀罕,很稀有,相当的珍贵-Tsinghua University, the data structure c++ version of the code, very rare, very rare, very valuable
TestHechangDuixing
- 动态规划之合唱队形,即利用动态规划解决合唱队形的问题-Dynamic Programming
BinaryTree
- 二叉树算法,如何构造二叉树以及对二叉树的操作-BinaryTree
AllocBuddy
- 伙伴系统:avail[0..m]为可利用空间表, n为申请分配量, 若有不小于n的空闲块, 则分配相应的存储块, 并返回其首地址,否则返回NULL -Partner system: avail [0 .. m] can be used for table space, n for the distribution of the volume of applications, if n is not less than the free block, then the distribution o
qpl
- n个数的全排列的非递归算法,cpp文件可编译运行-n the number of full-order non-recursive algorithm, cpp files can be compiled to run
maze
- 典型的迷宫算法,用数据结构——栈来实现,很好的代码-maze
EightQueens
- 数据结构 八皇后问题解决方案一 很好的代码-8 Queen' s problem of data structure of a solution
PCTest
- 基于java开发的OS中经典PV算法:生产者和消费者算法的演示。-Java-based OS development of PV in the classical algorithm: algorithm for producers and consumers of the presentation.
Huffmancoding
- 数据结构程序设计——哈夫曼编码,希望给同学一些帮助-Data Structure Programming- Huffman coding, the students want to give some help
biaodashiqiuzhisuanfa
- 扩充课堂上讨论的表达式求值算法的功能,使得算法除了能进行加(+)、减(–)、乘(*)、整除(/) 运算之外,还能进行乘方(^)运算。 乘方运算符的优先级高于加、减、乘、整除运算符,低于括号;多个乘方运算符连续出现时,从右往左计算。 输入数据从文本文件“实习3数据.txt”中读取。该文件只有一行:一个用分号(;)结尾的表达式。 输出结果显示在屏幕上。 例如,若从文本文件中读取的数据是: 4+(2^2^3*4-120)*2 屏幕显示计算结果: 1812
tushuguanlixitong
- 计算机数据结构课程设计,图书管理系统c语言版(含有软件设计书).-Computer data structures curriculum design, library management system c language version (with software design book).
xiangqimadezoufa
- 参考课堂迷宫问题的解题方法,建立move数组,若马当前位置是(x,y),则沿着第i(1<=i<=8)个方向跳一步,到达新的位置为( x’,y’),下表位置可以根据 move 数组来确定,有: x’=x+move[i][0] y’=y+move[i][1]. 马走过的信息的 用结构体来存储。move数组用于存储马可以走过的方向,将开始的马的位置的信息存入队列,马沿着8个方向跳动,在马跳动过程中,将马的跳动步数加1,如果马没有走到边界,判断马有没有在走同样的步数到同一个节点。如果马没