用贪婪算法解决背包问题_解决主要算法问题的贪婪策略

用贪婪算法解决背包问题

Introduction:

介绍:

Let's start the discussion with an example that will help to understand the greedy technique. If we think about playing chess, when we make a move we think about the consequences of the move in future states, but in case of playing cricket or tennis, we consider immediate states rather considering any future consequences. This means in some cases we make decisions which seems to be correct at that moment and in some cases we make a decision based on the following consequences or future cases.

让我们从一个有助于理解贪婪技巧的例子开始讨论。 如果我们考虑下棋,那么当我们做出举动时,我们会考虑这一举动在未来状态下的后果,但是在打板球或打网球的情况下,我们考虑的是即时状态,而不是考虑任何未来的后果 。 这意味着在某些情况下,我们做出当时似乎正确的决定,并且在某些情况下,我们基于以下后果或未来情况做出决定。

The idea of local and global can take place here. Local means the immediate case where global means considering the future situation.

本地和全球的想法可以在这里进行。 本地意味着眼前的情况,而全球意味着考虑未来的情况。

The greedy technique is all about making a local decision, based n that immediate case, on based on future consequences and that's why the strategy is known as greedy.

贪婪的技巧全在于根据紧急情况基于未来的后果做出本地决策,这就是为什么该策略被称为贪婪的原因

贪婪策略 (Greedy strategy)

Greedy strategy means to make a decision at each step without taking account its consequence at future steps. We find out the best local move at each step to reach the goal. The greedy strategy assumes that a bunch of local best decisions can lead to global optimization.

贪婪策略意味着在每个步骤中都做出决定,而不考虑其在后续步骤中的后果。 我们找到在实现目标的每一步中的最佳本地移动。 贪婪策略假设一堆本地最佳决策可以导致全局优化

什么贪心算法组成? (What greedy algorithm consists of?)

The basic properties of the greedy strategy can be divided into two part:

贪婪策略的基本属性可以分为两部分:

  1. Greedy choice property

    贪婪的选择属性

  2. Optimal substructure

    最佳子结构

Greedy choice property is about making local optimization (greedy). The choices made by greedy may depend on the past moves but never on the future steps. Iteratively, we make each greedy move to reduce the problem to a smaller problem and finally to achieve global optimization.

贪婪选择属性是关于进行局部优化(贪婪)的。 贪婪做出的选择可能取决于过去的举动,而不取决于未来的步骤。 反复地,我们采取各种贪婪的举动以将问题简化为较小的问题,并最终实现全局优化。

Optimal substructure means if we can divide the problem to further sub-problems and have optimal solutions for that, which will combine to a solution to solve the entire large problem.

最优子结构意味着如果我们可以将问题分解为其他子问题,并为此找到最优解决方案,则可以将其组合为解决整个大问题的解决方案。

贪婪总是奏效吗? (Does greedy work always?)

Needless to say, making a local best choice can't lead to global best choice always. Just think of a hill and think while climbing you are to find the maximum peak. You took a greedy strategy and found a local peak which is not at all global.

毋庸置疑,做出本地最佳选择并不能总导致全球最佳选择。 只是想想一座小山,想想在爬山时您会发现最大的山峰。 您采取了一个贪婪的策略,并发现了一个根本不是全球性的局部高峰。

Thus greedy strategy doesn't work for all to give the best solutions.

因此,贪婪策略并不能为所有人提供最佳解决方案。

贪婪算法一目了然 (Greedy algorithm at a glance )

Why to use greedy algorithm?

为什么要使用贪心算法?

  • It's straightforward, easy to examine and easy to code.

    它简单明了,易于检查且易于编码。

  • Since we are making local moves, no need to store any computation to re-examine.

    由于我们正在本地移动,因此无需存储任何计算即可重新检查。

But greedy has pitfalls

但是贪婪有陷阱

  • It doesn't have a solution to all problems

    它并不能解决所有问题

  • In many cases greedy fails to lead optimal solution

    在许多情况下,贪婪无法导致最优解

  • In some cases, it misleads to a wrong solution

    在某些情况下,它会误导错误的解决方案

Still due to the simple structure and strategic nature greedy has a lot of applications. In interview coding problems we also use greedy strategy to the well-known greedy problems. Following is a list of applications where greedy can be used:

仍然由于简单的结构和战略性质,贪婪具有许多应用。 在面试编码问题中,我们还对著名的贪婪问题使用贪婪策略。 以下是可以使用贪婪的应用程序列表:

  • Sorting: Topological sort, heap sort

    排序: 拓扑排序 , 堆排序

  • Priority Queue

    优先队列

  • Huffman coding compression

    霍夫曼编码压缩

  • Prim's and Kruskal's algorithm

    Prim和Kruskal算法

  • Dijkstra's algorithm to find the shortest path in a weighted graph

    Dijkstra的算法,用于找到加权图中的最短路径

  • Coin change problem

    找零问题

  • Fractional knapsack problem

    小背包问题

  • Job scheduling problem

    作业安排问题

There is also a special use of the greedy technique. When we need to find an approximate solution to a complex problem, greedy can be a superb choice.

贪婪技术也有特殊用途。 当我们需要找到一个复杂问题的近似解决方案时,贪婪可能是一个极好的选择。

翻译自: https://www.includehelp.com/icp/greedy-strategy-to-solve-major-algorithm-problems.aspx

用贪婪算法解决背包问题

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/546193.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

HashMap 的 7 种遍历方式与性能分析!(强烈推荐)

这是我的第 56 篇原创文章随着 JDK 1.8 Streams API 的发布,使得 HashMap 拥有了更多的遍历的方式,但应该选择那种遍历方式?反而成了一个问题。本文先从 HashMap 的遍历方法讲起,然后再从性能、原理以及安全性等方面,来…

BBcode 相关资源索引

VeryCD社区BBCode使用指南 BBcode Reference BBcodewikipedia

Why is HttpContext.Current null after await?

今天在对项目代码进行异步化改进的时候,遇到一个奇怪的问题(莫笑,以前没遇过),正如标题一样,HttpContext.Current 在 await 异步执行之后,就会变为 null。 演示代码: public async T…

c ++产生不同的随机数_C ++程序生成随机密码

c 产生不同的随机数Problem Statement: 问题陈述: Write a menu driven program to generate password randomly 编写菜单驱动程序以随机​​生成密码 constraint: 约束: password should consist of 密码应包含 lowercase Alphabet - a to zUpperC…

如何选择c语言学习书籍

C语言作为一个简洁精巧的语言,在计算机业中仍有非常广泛的应用。而在最近的编程语言流行度排名 中,C语言仍然位居第二的宝座。 通常在学习一门编程语言之前我们都会有一定的缘由:可能是为了应付某项专业考试,也可能是提高自己的专…

WEB平台架构之:LAMP(Linux+Apache+MySQL+PHP)

WEB平台架构之:LAMP(LinuxApacheMySQLPHP) 从业界来看,最主流的web平台架构就当属LAMP了。LAMP架构可以说是一切web平台的基础架构,所有一切的所谓大型架构无非就是通过一些负载均衡技术,集群技术,缓存技术等结合LAMP…

numpy zeros矩阵_零矩阵使用numpy.zeros()| 使用Python的线性代数

numpy zeros矩阵Zeros Matrix - When all the entries of a matrix are one, then it is called a zeros matrix. It may be of any dimension (MxN). 零矩阵 -当矩阵的所有条目均为1时,则称为零矩阵。 它可以是任何尺寸( MxN )。 Properties: 特性: T…

图解TCP三次握手和四次挥手!(简单易懂)

哈喽:亲爱的小伙伴,首先祝大家五一快乐~本来打算节日 happy 一下就不发文了,但想到有些小伙伴可能因为疫情的原因没出去玩,或者劳逸结合偶尔刷刷公众号,所以今天就诈尸更新一篇干货,给大家解解闷~前言不管面…

《c程序设计语言》练习1-12

c程序设计语言练习1-12:编写一个程序,以每行一个单词的形式打印其输入。 此处单词是指除空格,TAB键,换行字符和文件结束符号(EOF)之外的其他字符。 我的代码如下: 而《the c answer book》中的代…

如何在Java中对Collection对象进行排序?

排序集合的对象 (Sorting objects of the Collection) This concept is related to sorting and here we will see how to sort objects on the Collection? 这个概念与排序有关,在这里我们将看到如何对Collection上的对象进行排序? In java, we have u…

CFD分析过程(CFD Analysis Process)

2019独角兽企业重金招聘Python工程师标准>>> CFD分析过程 进行CFD分析的一般过程如下所示: 1、将流动问题表示为表达式 2、建立几何与流域的模型 3、设置边界条件和初始条件 4、生成网格 5、设置求解策略 6、设置输入参数与文件 7、进行仿真 8、监视仿真…

《数据结构与算法分析-C语言描述》习题2.6

《数据结构与算法分析-C语言描述》([urlhttp://users.cis.fiu.edu/~weiss/#dsaac2e]Data Structures and Algorithm Analysis in C[/url])习题2.6 该题要求计算几个循环的复杂度,并用程序计算出程序的执行时间。我在linux下的c程序如下:/* ex…

Redis 6.0 正式版终于发布了!除了多线程还有什么新功能?

这是我的第 56 篇原创文章Redis 6.0.1 于 2020 年 5 月 2 日正式发布了,如 Redis 作者 antirez 所说,这是迄今为止最“企业”化的版本,也是有史以来改动最大的一个 Redis 版本,同时也是参与开发人数最多的一个版本。所以在使用此版…

在Java中从字符串转换为双精度

Given a string value and we have to convert it into a double. 给定一个字符串值,我们必须将其转换为双精度型。 Java conversion from String to Double Java从String转换为Double To convert a String to Double, we can use the following methods of Doubl…

如何优雅地「蜗居」?

如果我们把「蜗居」理解为小户型、小空间居住,包括合租、大开间等,如何才能让「蜗居」丝毫不尴尬,所谓「优雅」,就是排除客观限制,最大限度的提升居住品质。王珦,室内设计师,文字编辑 蜗居要看“…

计算程序的执行时间

在windows下计算一段程序的执行时间,有以下方法: (1):使用[urlhttp://msdn.microsoft.com/en-us/library/4e2ess30%28VS.71%29.aspx]clock()[/url]函数(需包含头文件time.h) 我的c程序代码如下:…

一文带你看完ZooKeeper!

作者 | FrancisQ来源 | JavaGuide“文章很长,先赞后看,养成习惯。❤️ ???? ???? ???? ???? ????”什么是ZooKeeperZooKeeper 由 Yahoo 开发,后来捐赠给了 Apache ,现已成为 Apache 顶级项目。ZooKeeper 是一…

c# uri.host_C#| Uri.HostNameType属性与示例

c# uri.hostUri.HostNameType属性 (Uri.HostNameType Property) Uri.HostNameType Property is the instance property of Uri class which used to get the type of hostname specified in the given URI. This property returns a string value. This property may generate …

Struts里面的配置笔记

xml配置 package 用来区分重名 namespace 必须/开头 里面写的内容 前台反问的时候就加上 如果不写的话 只要你在url里面敲action都可以访问的到 result 默认的是SUCCESS 拷贝一个工程的时候要注意修改web里面的 context-root 转载于:https://www.cnblogs.com/yuzhengdong/p/394…

2023年底和2024年节假日及补班日期

holiday:#节假日- 2023-12-30- 2023-12-31- 2024-01-01- 2024-02-10- 2024-02-11- 2024-02-12- 2024-02-13- 2024-02-14- 2024-02-15- 2024-02-16- 2024-02-17- 2024-04-04- 2024-04-05- 2024-04-06- 2024-05-01- 2024-05-02- 2024-05-03- 2024-05-04- 2024-05-05- 2024-06-10-…