CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - 贪心算法

搜索资源列表

  1. 贪心算法实现多处理机调度

    0下载:
  2. 该程序是有关于利用贪心算法实现多处理机调度,可以在vc++上直接运行,只有源代码
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-17
    • 文件大小:1.36kb
    • 提供者:张燕娥
  1. 贪心法求任务调度问题

    0下载:
  2. 西电算法课的贪心部分上机试验题目!
  3. 所属分类:数据结构常用算法

    • 发布日期:2009-05-08
    • 文件大小:577byte
    • 提供者:THKBAD
  1. tanxinfa.rar

    0下载:
  2. 北京大学研究生课程“算法分析与计算复杂性理论”的课件,讲的是贪心算法。,University post-graduate courses
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:324.23kb
    • 提供者:sky
  1. greed

    0下载:
  2. 带有期限和效益的单位时间的作业排序贪心算法。作业已按效益值递减的顺序排好,依次输入各作业的期限值,要求按顺序输出最优解。-With the duration and effectiveness of the unit time Scheduling greedy algorithm. Operating efficiency values ​ ​ have been decreasing order, the order input period value of the o
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:4.26kb
    • 提供者:青青
  1. algorithmic

    0下载:
  2. 是一个介绍常用算法的课件,如贪心算法,规划算法等,试一下吧-Is a commonly used method to introduce the courseware, such as the greedy algorithm, planning algorithms and so on, try it
  3. 所属分类:Data structs

    • 发布日期:2017-05-11
    • 文件大小:2.42mb
    • 提供者:纪洪生
  1. 4-7you

    0下载:
  2. 计算机算法的多处最优服务次序问题,用贪心算法实现-Computer algorithm of multiple optimal service order issues, with greedy algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:11.32kb
    • 提供者:yi
  1. tanxinsuanfa

    0下载:
  2. 本文章介绍了贪心算法的过程及运用C语言的实现-This article describes the process of greedy algorithm and the realization of the use of C language
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:272.15kb
    • 提供者:玛丽
  1. zuixiaoshengchengshu

    1下载:
  2. 使用贪心算法编程,求解最小生成树问题,并给出详细的过程!-The use of greedy algorithm programming, minimum spanning tree problem solving, and gives details of the process!
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:11.07kb
    • 提供者:chenchen
  1. define_the_latter_table.txt

    0下载:
  2. 根据贪心算法,来求解最小生成树; 这种情况,可能求不不全局最优解,但是,可以求出当前情况下的最优解;-According to greedy algorithm to solve the minimum spanning tree this situation, it may not seek the global optimal solution is not, however, you can find the optimal solution under the current si
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1.2kb
    • 提供者:陈超
  1. Algorithm

    0下载:
  2. 算法分析与设计的讲义 内容有动态规划,分制思想,贪心算法等-Algorithm analysis and design of the lecture content of dynamic programming, sub-system thinking, greedy algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-05-16
    • 文件大小:4.35mb
    • 提供者:wp
  1. 01pack

    0下载:
  2. 用动态规划,贪心算法等算法实现01背包问题-Using dynamic programming, greedy algorithm knapsack problem algorithm 01
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:160.77kb
    • 提供者:ufo
  1. sffx

    0下载:
  2. 算法分析实验 包含背包算法,硬币问题,贪心算法-Algorithm analysis experiments including knapsack algorithm, coins, greedy algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:106.83kb
    • 提供者:赵当
  1. park

    0下载:
  2. 是公园路径搜索的c++实现方法,功能比较简单,是课程设计的。用到了迪杰斯特拉算法和贪心算法求最短路径-Is a park path search c++ implementation method is relatively simple functions, curriculum design. Use the Dijkstra algorithm and the greedy algorithm for the shortest path
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:5.01kb
    • 提供者:Freedream
  1. qichejiayou

    0下载:
  2. 一辆汽车加满油后可行驶n公里,旅途中有若干个加油站,设计一个有效算法,指出应在哪些加油站停靠加油,使沿途加油次数最少,对于给定的n和k个加油站位置,编程计算最少加油次数。 可以利用贪心选择性质来求解汽车加油问题,也就是所求问题的整体最优解可以通过一系列局部最优的选择,即贪心选择来达到。这是贪心选择算法可行的第一个基本要素,也是贪心算法与动态规划算法的主要区别。在动态规划算法中,每步所做的选择往往信赖于相关子问题的解,因而只有在解出相关子问题后,才能做出选择。而在贪心算法中仅在当前状态下做出最
  3. 所属分类:Data structs

    • 发布日期:2017-03-25
    • 文件大小:10.5kb
    • 提供者:Daninel
  1. greedyalgorithm

    0下载:
  2. 贪心算法是一种更为高效的算法,程序已全部通过-greedy algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:518byte
    • 提供者:赵伟
  1. suanfafenxi

    0下载:
  2. 算法分析课的实验-算法分析与设计\贪心算法-最优装载
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:123.46kb
    • 提供者:gaorui
  1. 贪心算法

    0下载:
  2. 贪心算法的详细说明,哈哈哈哈哈哈哈哈哈哈哈(Greedy algorithm is described in detail)
  3. 所属分类:数据结构

    • 发布日期:2017-12-30
    • 文件大小:3.78mb
    • 提供者:miku123
  1. 贪心

    0下载:
  2. 贪心算法的应用:对地点运输的贪心算法实现(Application of greedy algorithm)
  3. 所属分类:数据结构

    • 发布日期:2018-01-02
    • 文件大小:1kb
    • 提供者:ly448
  1. 源代码及数据

    1下载:
  2. 随着高校不断扩招,数字化校园的不断推进,应用信息化高效的分配和管理宿舍是非常有意义的。本作品创新性地引入了“种子选手”,并基于贪心算法设计出宿舍分配方案。用Python的GUI设计可视化界面,最终形成了宿舍分配系统。(With the continuous expansion of colleges and universities and the continuous promotion of digital campus, it is very meaningful to distribut
  3. 所属分类:数据结构

    • 发布日期:2018-01-08
    • 文件大小:50kb
    • 提供者:SFQRM
  1. duoji

    1下载:
  2. 完成n个工作在m台机器上的贪心算法分配 每个作业只能选择一台设备加工,加工时间为t.每台机器一次只能加工一个作业,使等待时间最短。(Implementation of greedy algorithm allocation for n jobs on m machines)
  3. 所属分类:数据结构

    • 发布日期:2020-04-03
    • 文件大小:310kb
    • 提供者:baliea
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com