CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 控制台(字符窗口)编程 搜索资源 - 算法描述

搜索资源列表

  1. KaiSa

    0下载:
  2. 简单的恺撒加密算法(c++描述),欢迎大家下载!-simple Caesar encryption algorithm (c described), all are welcome to download!
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:8170
    • 提供者:目亚
  1. Desktop

    0下载:
  2. 调度问题的回溯算法,算法中的经典问题。问题描述:假设有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
  3. 所属分类:Console

    • 发布日期:2017-03-28
    • 文件大小:16015
    • 提供者:pactric
  1. tsp

    0下载:
  2. 使用蚁群算法解决TSP问题的C++算法描述-use ant to solve travelling salesman problem
  3. 所属分类:Console

    • 发布日期:2017-11-23
    • 文件大小:7133
    • 提供者:
  1. paixvsuanfa

    0下载:
  2. 排序算法的实现与比较(数据结构课程设计题)   问题描述:编程实现快速排序算法,并利用程序统计执行时间。   实现要求:随机产生10000、50000、 100000、 200000个待排数据存入磁盘文件,从磁盘文件读入待排数据进行排序,并将排序结果写入另一个文件中。-Implementation and comparison of sorting algorithms (data structure curriculum design questions) Problem Descr
  3. 所属分类:Console

    • 发布日期:2017-11-29
    • 文件大小:1182
    • 提供者:华黄
  1. JoseQuestion

    0下载:
  2. 约瑟夫环问题求解    约瑟夫环问题的具体描述是:设有编号为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
  3. 所属分类:Console

    • 发布日期:2017-11-27
    • 文件大小:1020
    • 提供者:冯读庆
  1. MedLDAc_windows

    0下载:
  2. 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
  3. 所属分类:Console

    • 发布日期:2017-11-14
    • 文件大小:147706
    • 提供者:tutu
  1. PID-vC-2012

    0下载:
  2. 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.
  3. 所属分类:Console

    • 发布日期:2017-05-07
    • 文件大小:2028170
    • 提供者:袁超
  1. QFTCT_examples

    0下载:
  2. 定量反馈控制算法描述,详细讲解了定量反馈控制工具箱的试用说明。-Detail descr iption the use of QFT tool box, have many functions about the use of QFT
  3. 所属分类:Console

    • 发布日期:2017-05-12
    • 文件大小:2802495
    • 提供者:lin
  1. Solution_Sort

    0下载:
  2. 用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.
  3. 所属分类:Console

    • 发布日期:2017-06-14
    • 文件大小:22722673
    • 提供者:沈桂江
  1. QuickSort

    0下载:
  2. 用C++11g描述的快速排序算法,给出了每一步操作实现的步骤和结果,适合初学者使用。-Fast sorting algorithm uses C++11g described steps and results are given for each step of the operation to achieve, for beginners.
  3. 所属分类:Console

    • 发布日期:2017-05-20
    • 文件大小:5658746
    • 提供者:沈桂江
  1. Max-Multiply

    0下载:
  2. 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是序列的
  3. 所属分类:Console

    • 发布日期:2017-12-14
    • 文件大小:658
    • 提供者:武磊
  1. zhongweishu

    0下载:
  2. 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数组的元素。 结果输出 程序运行结束时,将计算出的中位数输出到
  3. 所属分类:Console

    • 发布日期:2017-12-12
    • 文件大小:551
    • 提供者:武磊
搜珍网 www.dssz.com