搜索资源列表
KaiSa
- 简单的恺撒加密算法(c++描述),欢迎大家下载!-simple Caesar encryption algorithm (c described), all are welcome to download!
Desktop
- 调度问题的回溯算法,算法中的经典问题。问题描述:假设有n个任务由k个可并行工作的机器完成。完成任务i需要的时间为ti。试设计一个算法找出完成这n个任务的最佳调度,使得完成全部任务的时间最早。-Scheduling problem backtracking algorithm is the classic problem. Problem Descr iption: Suppose there are n-task by the k-parallel machine can be complete
tsp
- 使用蚁群算法解决TSP问题的C++算法描述-use ant to solve travelling salesman problem
paixvsuanfa
- 排序算法的实现与比较(数据结构课程设计题) 问题描述:编程实现快速排序算法,并利用程序统计执行时间。 实现要求:随机产生10000、50000、 100000、 200000个待排数据存入磁盘文件,从磁盘文件读入待排数据进行排序,并将排序结果写入另一个文件中。-Implementation and comparison of sorting algorithms (data structure curriculum design questions) Problem Descr
JoseQuestion
- 约瑟夫环问题求解 约瑟夫环问题的具体描述是:设有编号为1,2,……,n的n(n>0)个人围成一个圈,从第1个人开始报数,报到m时停止报数,报m的人出圈,再从他的下一个人起重新报数,报到m时停止报数,报m的出圈,……,如此下去,直到所有人全部出圈为止。当任意给定n和m后,设计算法求n个人出圈的次序。-Josephus Josephus problem solving specific descr iption is: has numbered 1, 2, ...... n n (n
MedLDAc_windows
- MedLDA算法用于分类代码,源创Jun Zhu,算法描述可参看其icml09论文-The MedLDA the algorithm used for classification code, the source-invasive Jun Zhu, the algorithm Descr iption can be cross reference to its icml09 thesis
PID-vC-2012
- Visual Studio2012下的一个控制台程序,描述了最简单的PID算法原理。希望对初学PID算法的同学有帮助。-Visual Studio2012 under a console program, describes the most simple PID algorithm principle. The hope of learning the PID algorithm to help students.
QFTCT_examples
- 定量反馈控制算法描述,详细讲解了定量反馈控制工具箱的试用说明。-Detail descr iption the use of QFT tool box, have many functions about the use of QFT
Solution_Sort
- 用C++11g描述的排序算法,给出了每一步排序的步骤和实现的的结果,适合初学者使用。-Step sorting algorithm used C++11g descr iption is given of each step of ordering and the results achieved, suitable for beginners to use.
QuickSort
- 用C++11g描述的快速排序算法,给出了每一步操作实现的步骤和结果,适合初学者使用。-Fast sorting algorithm uses C++11g described steps and results are given for each step of the operation to achieve, for beginners.
Max-Multiply
- i.最大K乘积问题 问题描述 设I是一个n位十进制整数。如果将I划分为k段,则可得到k个整数。这k个整数的乘积称为I的一个k乘积。试设计一个算法,对于给定的I和k,求出I的最大k乘积。 例如十进制整数 1234 划分为 3 段可有如下情形: 1 × 2 × 34 68 1 × 23 × 4 92 12 × 3 × 4 144 编程任务 对于给定的I 和k,编程计算I 的最大k 乘积。 数据输入 输入的第1 行中有2个正整数n和k。正整数n是序列的
zhongweishu
- i.中位数问题 问题描述 设X[ 0 : n - 1]和Y[ 0 : n – 1 ]为两个数组,每个数组中含有n个已排好序的数。找出X和Y的2n个数的中位数。 编程任务 利用分治策略试设计一个O (log n)时间的算法求出这2n个数的中位数。 数据输入 由文件input.txt提供输入数据。文件的第1行中有1个正整数n(n< 200),表示每个数组有n个数。接下来的两行分别是X,Y数组的元素。 结果输出 程序运行结束时,将计算出的中位数输出到