CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 源码下载 数值算法/人工智能

资源列表

« 1 2 ... .89 .90 .91 .92 .93 24694.95 .96 .97 .98 .99 ... 28278 »
  1. LCS

    0下载:
  2. LCS问题具有最优子结构和重叠子问题的性质,因此采用动态规划算法自底向上计算该问题的解,并输出求到的LCS。-LCS problem with sub-optimal substructure and overlapping nature of the problem, so a bottom-up dynamic programming algorithm for computing the solution of the problem, and the output request to
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:832byte
    • 提供者:zhdxch
  1. pairdistance

    0下载:
  2. 在C语言环境下,实现寻找空间中最近点对的有效算法。-In the C language environment, to achieve search space, the nearest point on the efficient algorithm.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1.41kb
    • 提供者:zhdxch
  1. maze77

    0下载:
  2. 用二进制写的迷宫,输入的充满0和1的迷宫,输出后有迷宫路径-maze with 0 and 1
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:228.93kb
    • 提供者:angle
  1. 93939393939

    0下载:
  2. 数据结构中二叉树、堆栈、队列以及深度优先与广度优先算法实现-Binary tree data structure, stack, queue and the depth first and breadth-first algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:90.96kb
    • 提供者:木暮团
  1. DynamicProgramming

    0下载:
  2. 数据结构的作业,用动态规划算法解决旅行商问题-Data structure operations, with a dynamic programming algorithm to solve traveling salesman problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:25.17kb
    • 提供者:王佳佳
  1. TopoSort

    0下载:
  2. 拓扑排序的算法,按前驱计数为0的顶点号在同一批输出,以突显这些任务是可并行进行的-Topological sorting algorithm, according to the vertices of precursor count number is 0 in the same batch of output, in order to highlight these tasks can be carried out in parallel
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:26.95kb
    • 提供者:王佳佳
  1. QuickAndStraightSelectSort

    0下载:
  2. 快速排序与直接选择排序相结合的排序算法。对输入的序列,用Partition过程分割成每10个一组的子序列,然后再对子序列实施直接选择排序-Quicksort sorting combined with the direct selection of the sorting algorithm. The input sequence, using Partition process is divided into a group of 10 sub-sequence, then the imple
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:27.97kb
    • 提供者:王佳佳
  1. Huffman

    0下载:
  2. 求解Huffman编码的程序及解码的程序-Solving Huffman coding and decoding process procedure
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:369.58kb
    • 提供者:王佳佳
  1. Dijkstra

    0下载:
  2. dijkstra算法求解旅行商问题的最短路径长度,并输出路径-dijkstra algorithm shortest path length of the traveling salesman problem, and the output path
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:24.82kb
    • 提供者:王佳佳
  1. joseph

    0下载:
  2. 约瑟夫环(Joseph)问题的一种描述是:编号1,2,┉,n的n个人按顺时针方向围坐一圈,每个人持有一个密码(正整数),一开始,任选一个正整数作为报数上线值m,从第一个人开始按顺时针方向自1开始顺序报数,报到m时停止报数。报m的人出列,将他的密码作为新的m值,从他在顺时针方向上的下一个人开始重新从1开始报数,如此下去,直至所有人全部出列为止。设计一个程序求出出列顺序。-Joseph Ring (Joseph) a descr iption of the problem is: No. 1,2,
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:663byte
    • 提供者:木清澄
  1. maze

    0下载:
  2. 用矩阵M×N表示一个迷宫,0和1分别表示通路和墙壁。试求出从入口点到达出口点的一条通路-M × N matrix to represent a maze, 0 and 1, respectively, channels and walls. Derive an exit point from the entry point to reach a path
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1.2kb
    • 提供者:木清澄
  1. park

    0下载:
  2. 停车场管理。设停车场内只有一个可停放n辆汽车的狭长通道,且只有一个大门可供汽车进出。汽车在停车场内按车辆到达时间的先后顺序,依次由北向南排列(大门在最南端,最先到达的第一辆车停放在车场的最北端),若车场内已停满n辆汽车,则后来的汽车只能在门外的便道上等候,一旦有车开走,则排在便道上的第一辆车即可开入。当停车场内某辆车要离开时,在它之后开入的车辆必须先退出车场为它让路,待该辆车开出大门外,其它车辆再按原次序进入车场。每辆停放在车场的车在它不离开停车场时必须按它停留的时间长短交费。试为停车场编制按上
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:1.82kb
    • 提供者:木清澄
« 1 2 ... .89 .90 .91 .92 .93 24694.95 .96 .97 .98 .99 ... 28278 »
搜珍网 www.dssz.com