搜索资源列表
OI
- 用多种算法解决0-1背包问题,包括回朔法,动态规划,贪心算法等-algorithm used to solve a variety of 0-1 knapsack problem, including the retrospective method, dynamic programming, greedy algorithm
change-making
- acm换钱的算法,主要检查货币的度量衡是否可以用贪心法
sche3
- « 问题描述: 假设要在足够多的会场里安排一批活动,并希望使用尽可能少的会场。设计一个有效的 贪心算法进行安排。(这个问题实际上是著名的图着色问题。若将每一个活动作为图的一个 顶点,不相容活动间用边相连。使相邻顶点着有不同颜色的最小着色数,相应于要找的最小 会场数。) « 编程任务: 对于给定的k个待安排的活动,编程计算使用最少会场的时间表。 « 数据输入: 由文件input.txt给出输入数据。第一行有1 个正整数k,表示有k个待安
JZXcalc
- 集装箱的装箱问题 给定一个集装箱,其长为L,宽为W和高为H,现有一批圆柱形木材,每根木材的长均为L,但是半径不同,设第i根木材半径为ri。问如何装箱,使得集装箱的空间利用率最高? 本程序要求用贪心算法解决: 贪心算法总是作出在当前看来是最好的选择。也就是说,不从整体最优上加以考虑,它所做出的仅是在某种意义上的局部最优解。
GreedyASelectorMain
- 贪心算法 使某些问题时间复杂度降为一维线性
单源点最短路径贪心算法
- 单源点最短路径贪心算法:用到Dijkstra算法,-single source shortest path greedy algorithm : use Dijkstra algorithm,
jiqiren
- 机器人登山问题,两种解法:动态规划和贪心算法-jiqiren
GreedySelector
- 图形界面的贪心算法,动态显示运行求解问题的过程-Graphical interface, greedy algorithms, dynamic display of running the process of problem solving
pack_of_four_algorithms
- 01背包四种算法实现:动态规划法,分支限定法,回溯法,贪心算法-01 pack of four algorithms: dynamic programming, branch limit method, backtracking, greedy algorithm
greedyknapsack
- 贪心算法之背包问题。背包问题的贪心算法要求按照单位容量效益值的高低的量度标准进行排序,然后再分级选取,求得最优解。实现此算法,物品个数,每件物品的效益值,容量值,背包容量值都由键盘输入;输出结果要有每件物品的详细信息。-Greedy algorithm for knapsack problem. Knapsack problem greedy algorithm efficiency requirements in accordance with the unit value of the ca
greedyjs
- 贪心算法之带有限期的作业排序。应用贪心设计策略解决操作系统中单机、无资源约束且每个作业可以在等量的时间内完成的作业调度问题。-Greedy Algorithm for Scheduling with deadline. Application greedy single operating system design strategy to solve, no resource constraints and each job can be completed within the same a
currency-exchange
- 利用C++实现货币兑换的贪心算法,取得货币兑换的最优解。-Using C++ implementation of the greedy algorithm currency exchange, currency exchange obtained the optimal solution.
algorithm
- 熟悉C/C++语言的集成开发环境;通过本实验加深对分治法、贪心算法的理解。掌握贪心算法、动态规划和回溯算法的概念和基本思想,分析并掌握"0-1"背包问题的三种算法,并分析其优缺点。-Master the greedy algorithm, the dynamic programming algorithm and back of the concept and basic thought, analysis and master "0-1" knapsack problem three algo
tanxinsuanfa
- 贪心算法计算货币数量,计算出不同面值所需要的张数,最优方案-Greedy algorithm to calculate the quantity of money, to calculate the number of sheets of different denominations, the optimal solution
greedyselector
- 算法分析与设计,贪心算法解决活动安排问题,从data.txt文件中读取所要安排的活动的数量和活动的开始和介绍时间,输出选择的活动,在安排活动的过程中不移动活动的顺序。-Number of algorithm analysis and design, greedy algorithm for solving activities arrangements, from the the data.txt file read to arrange activities and the activitie
tanxinsuanfa
- 贪心算法c语言,用于数值计算等,主要为贪心算法-Gaussian algorithm c language for numerical calculation, Gaussian elimination
partition
- 贪心算法-会场安排问题的源代码 【问题描述】 假设要在足够多的会场里安排一批活动,并希望使用尽可能少的会场。设计一个有效的算法进行安排。 这个问题实际上是著名的图着色问题。若将每一个活动作为图的一个顶点,不相容活动间用边相连。使相邻顶点着有不同颜色的最小着色数,相应于要找的最小会场数。 编程任务:对于给定的 k 个待安排的活动,编程计算使用最少会场的时间表。 【贪心策略】 根据会场安排问题的定义,首先将问题简化为:找出两个活动i和j,若它们满足start
the-horse-working-in-the-chass
- 实现马踏棋盘的功能。 输入:马的初始位置。 输出:马踏棋盘的路径。利用贪心算法+回朔算法实现!可以产生全部可能的路径!而且可以可视化的输出动态行走路径!-implementation of the horse working in the chess.
code
- 会场安排贪心算法c++实现,按照贪心要求,完成每次选择的最优-Arrange the venue greedy algorithm c++ implementation
tsp
- 基于贪心算法计算tsp问题-TSP problem based on greedy algorithm