搜索资源列表
Greedy_Implicit-贪心算法_隐枚举法
- 贪心算法_隐枚举法(0 - 1 整数规划求解),matlab代码-Greedy algorithm _ implicit enumeration method ( 0- 1 integer programming solver ) ,matlab code
The_Greedy_Heuristic
- 表上作业法(贪心法)的MATLAB程序 解决运输问题的算法,内部有程序代码的详细介绍以及一个算例的介绍。本人为MATLAB初学者,欢迎交流,QQ420797419-This simple heuristic usually gives good, but possibly suboptimal solutions for the transportation problem.
ShortEst
- matlab最短路的贪心算法,用VC++实现,把ShortEst.dll复制到matlab工作文件夹运行(先要运行mex-setup,关联VC与MATLAB)调用方法如 a = [-1,2,3 2,-1,4 3,4,-1] ShorstEst(a) 即可-matlab most short-circuit the greedy algorithm, using VC++ to achieve, and copy it to ShortEst.dll working folder m
featureselect_FW_fast
- 新基于邻域粗糙集的前向贪心的属性约简算法-New neighborhood-based forward greedy rough set attribute reduction algorithm
MATLAB
- 2012 东三省数学建模D题 第一问 基于贪心算法下的自己画8种不同的打孔点并找点之间最小成本连线的GUI程序-2012 Manchuria D problem of mathematical modeling the first question based on the greedy algorithm, painted himself eight different punch point and find the minimum cost connection between GUI p
w
- 求临接矩阵的算法,可以用于弗洛伊德算法和贪心算法-Seeking the provisional access matrix algorithm, Freud' s algorithm and the greedy algorithm can be used to
ew
- 求临接矩阵的算法,可以用于弗洛伊德算法和贪心算法-Seeking the provisional access matrix algorithm, Freud' s algorithm and the greedy algorithm can be used to
Greedy_Knapsack_problem
- 贪心算法matlab程序解决背包问题,可用于类似的0-1问题求解-A matlab process used to solve Knapsack_problem with Greedy algorithm
problem_1
- 贪心算法寻找警车巡逻最佳位置,并在图上标注-Greedy algorithm to find the best location police patrol and marked on the map
LCS
- 使用贪心算法解决了图论算法中的最大点集覆盖问题-Greedy algorithm using graph theory algorithms to solve the biggest point set covering problem
Greedy-algorithm
- 贪心算法(又称贪婪算法)是指,在对问题求解时,总是做出在当前看来是最好的选择。也就是说,不从整体最优上加以考虑,他所做出的是在某种意义上的局部最优解。-Greedy algorithm (also known as the greedy algorithm) refers to when to problem solving, always made in the current opinion is the best choice. That is to say, not to be cons
TSPSA
- 贪心算法和退火模拟算法的MATLAB程序,贪心算法仅是在某种意义上的局部最优解。(Greedy algorithm MATLAB procedures, greedy algorithm is only in a sense of the local optimal solution.)
矩形件
- MATLAB模型进行仿真分析,遗传算法中的贪心算法进行模拟(Simulation analysis of MATLAB model and Simulation of greedy algorithm in genetic algorithm)
Sara算法
- 实现的Sara强化学习算法,动作选择策略为贪心策略,且存在收敛条件和最终状态。(The implemented Sara reinforcement learning algorithm, the action selection strategy is a greedy strategy, and there are convergence conditions and final states.)
贪心算法matlab程序
- 本代码详细介绍了贪心算法的应用,可以更好的了解出排序问题。