资源列表
muskSuccess
- 数据挖掘与机器学习中可以用于多示例学习的原始数据集MUSK1 已经转化成ARFF格式可直接用于weka的-Data mining and machine learning the original data set can be used for multi-instance learning MUSK1 has been transformed into ARFF format it can be used directly in weka
MUSK2success
- Data mining and machine learning the original data set can be used for multi-instance learning MUSK2 has been transformed into ARFF format it can be used directly in weka-Data mining and machine learning the original data set can be used for multi-in
Power-electronic-EMT-simulation
- 电力电子电磁暂态仿真电力电子电磁暂态仿真-power electronic EMT simulationpower electronic EMT simulation
N-Queue_DFS
- BFS法求解N皇后问题,输出全部解决方案。-BFS method for solving N queens problem and output all solutions.
ChessTest
- 在一个N*N的棋盘上指定起点坐标及终点坐标,以马走日的方式输出从起点到终点的一条可能路径。并用图形演示其跳马路径。-Given a start piont p1 and a end point p2 on the N*N chessboard, find a possible path p1 to p2(No duplicate) and show it in the way of partten.
knight-tour_DFSandBFS_SQueue
- 在一个N*N的棋盘上指点任意一点的坐标,以马走日的方式走完整个棋盘且没有重复,试分别用DFS、BFS方法求解并输出全部可能的路径。-knight tour problem solved by the method of BFS and DFS.
union
- Program to find UNION, INTERSECTION of input SETs.
tushuguanlxit
- 1. 图书信息包括:序号、书名、作者、出版单位、价格。 2. 系统以菜单方式工作。 3. 图书信息录入功能(图书信息用文件保存)--输入。 4. 图书信息的删除与修改功能。 5. 图书信息浏览功能--输出。 6. 查询功能--算法:(按书名/作者查询)。 7. 排序功能--算法:(按书名排序/按价格排序)。 8. 图书购买功能:统计选购图书的总价,给出清单,屏幕输出参考以下的实际购书单。 -1 book inform
eight-queen
- 数据结构经典问题 八皇后问题 使用c++语言进行实现-Eight queens problem data structure
expression_calcuate
- 输入一个表达式,可以求出表达式的值(表达式中可以带括号,进行加减乘除运算)-Enter an expression, you can calculate the value of the expression (expression in parentheses, are add, subtract, multiply and divide operations)
Huffmancode
- 依据字符出现概率来构造异字头的平均长度最短的码字-On the basis of the average length of characters appear different prefix probability to construct the shortest codeword
MinMaxHeap
- 最小最大堆的插入,删除,找最大最小值操作实现(写成C++库文件的形式,可在.cpp代码中直接调用)-MinMaxHeap, we can implement findMin and findMax in O(1) time and insert or delete in O(log n) time.