搜索资源列表

  1. Class1

    0下载:
  2. 用贪婪算法中的哈夫曼编码为文件进行压缩,得到一个比较好的压缩程序.-greedy algorithm with the Huffman encoding of the document for compression, to be a relatively good compression process.
  3. 所属分类:C#编程

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:郭宏慧
  1. tanxin

    0下载:
  2. 这是一个贪心算法的c程序。贪心算法(也叫贪婪算法)不是某种特定的算法,而是一类抽象的算法,或者说只是一种思想,它的具体表现在,对解空间进行搜索时,不是机械地搜索,而是对局部进行择优选取,贪心算法的目的不是为了找到全部解,也当然找不出最优解,而只是找出一种可行解,这样就会得到惊人的高效性。因此,贪心算法也叫启发式搜索,这种启发就是所谓的“贪心策略”。-This is a greedy algorithm c procedures. Gre
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:王卫红
  1. id4

    0下载:
  2. 对贪婪算法进行系统分析介绍,例题详尽,思路清晰,容易掌握-right greedy algorithm analysis, detailed examples, clear, easy to master
  3. 所属分类:文档资料

    • 发布日期:2024-05-11
    • 文件大小:24576
    • 提供者:鼹鼠
  1. greedyAlgorithm

    0下载:
  2. 数据挖掘常用的贪婪算法,有详细的讲解和算法举例。-data mining algorithms commonly used greed, and explain in detail the algorithm, for example.
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-11
    • 文件大小:37888
    • 提供者:
  1. Dynamic_Programming

    0下载:
  2. 多阶段决策过程( multistep decision process )是指 这样一类特殊的活动过程,过程可以按时间顺序分解成若干个相互联系的阶段,在每一个阶段都需要做出决策,全部过程的决策是一个决策序列。 动态规划 ( dynamic programming )算法 是解决 多阶段决策过程最优化问题 的一种常用方法,难度比较大,技巧性也很强。利用动态规划算法,可以优雅而高效地解决很多贪婪算法或分治算法不能解决的问题。动态规划算法的基
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-11
    • 文件大小:3072
    • 提供者:汤烈
  1. tanlansuanfa

    0下载:
  2. 常用算法编程与算法第1章贪婪算法 常用算法编程与算法贪婪算法-commonly used algorithms and programming algorithm Chapter 1 of the greedy algorithm commonly used algorithms and programming algorithm greedy algorithm
  3. 所属分类:WEB源码

    • 发布日期:2024-05-11
    • 文件大小:44032
    • 提供者:曹永超
  1. Wiring

    0下载:
  2. 一个自己用C编的关于贪婪算法的例子,压缩包里带有原题目与原测试数据-they use a C series of examples of the greedy algorithm, compressed bundle with the original title and the original test data
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-11
    • 文件大小:58368
    • 提供者:黄金海
  1. shortestpathbetweenpoints

    0下载:
  2. 假设有一间房子,在房子丽的任意两点之间铺设电线,要求线要和墙面平行,求最短距离.用了贪婪算法.-assuming a room in the house arbitrary Korea between 2:00 cables require line parallel to the wall and, for the shortest distance. with a greedy algorithm.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-11
    • 文件大小:4096
    • 提供者:王佩君
  1. tanlan_suanfa_1

    1下载:
  2. 这是用C编写的贪婪算法,非常实用,欢迎大家下载哈!-This is prepared by using C greedy algorithm is very practical, welcomed everyone to download Ha!
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-11
    • 文件大小:22528
    • 提供者:yanggang
  1. work

    0下载:
  2. DVD租赁的matlab源程序,使用贪婪算法-DVD rental matlab source code, the use of greedy algorithm
  3. 所属分类:matlab例程

    • 发布日期:2024-05-11
    • 文件大小:3072
    • 提供者:苏杰锋
  1. fish

    0下载:
  2. ACM钓鱼问题算法 贪婪算法例子,算出如何在限定时间钓到最多鱼-Fishing issue of ACM algorithm greedy algorithm examples of how to calculate the maximum time limit of fish caught
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:黄子聪
  1. greedy

    0下载:
  2. 一个贪婪算法的仿真程序,以及介绍的ppt,欢迎大家一起研究。-A greedy algorithm for the simulation program, as well as the introduction ppt, welcomed everyone to study together.
  3. 所属分类:matlab例程

    • 发布日期:2024-05-11
    • 文件大小:55296
    • 提供者:cc5go
  1. Algorithm_Design

    0下载:
  2. 算法设计与分析,其中包括贪婪算法、分而治之算法、动态规划、回溯、分枝定界-Algorithm design and analysis, including greedy algorithms, divide and conquer algorithms, dynamic programming, backtracking, branch and bound
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-11
    • 文件大小:116736
    • 提供者:kiwi
  1. tanlansuanfa

    0下载:
  2. 经典的贪婪算法,相信对研究OFDM的同学会有较大帮助-Classical greedy algorithm, I believe that the study of OFDM to help students have a greater
  3. 所属分类:传真(Fax)编程

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:zlg4302075
  1. modelfindthepoint

    0下载:
  2. 本论文建立了校园卡充值点安排方案的最优化模型 建立“0-1”模型,使用“启发式贪婪算法”,运用Lingo软件计算出三个最优点。 -In this paper, the establishment of a campus card program arrangements recharge point optimization model to establish a
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-11
    • 文件大小:122880
    • 提供者:yya
  1. Gewsh_HorseWalksCheckerBoard

    0下载:
  2. 使用贪婪算法解决的马踏棋盘的问题(使用简单排序和深度优先搜索的方法)-Greedy algorithm used to resolve the issue of horse riding board (using a simple sorting and depth-first search method)
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2024-05-11
    • 文件大小:182272
    • 提供者:葛尧
  1. tanlansuanfa

    0下载:
  2. 此文件为贪婪算法的matlab源代码,适合参加数学建模的同学使用-This document is a greedy algorithm matlab source code, suitable for students to participate in the use of mathematical modeling
  3. 所属分类:matlab例程

    • 发布日期:2024-05-11
    • 文件大小:31744
    • 提供者:han
  1. beibao

    0下载:
  2. 背包问题运用贪婪算法的matlab 程序实现-Use of greedy algorithm knapsack problem of matlab program
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:shangsheng
  1. greed

    0下载:
  2. 贪婪算法合集,包括二分覆盖,单源最短路径,拓扑排序,机器调度问题-Greedy algorithm Collection, including two sub-coverage, single-source shortest path, topological sort, machine scheduling problem
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-11
    • 文件大小:41984
    • 提供者:alden
  1. greedy

    0下载:
  2. 有关贪婪算法的源码,可以用在无线网的成链协议中-The source of the greedy algorithm can be used in the wireless network into a chain of agreements
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-11
    • 文件大小:1024
    • 提供者:weinan
« 1 23 4 5 6 7 8 9 10 ... 19 »

源码中国 www.ymcn.org