记忆化和动态规划有什么区别?
记忆化和动态规划有什么区别?我认为动态编程是记忆的一个子集。对吗?
What is the difference between memoization and dynamic programming? I think dynamic programming is a subset of memoization. Is it right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(12)
记忆化是一个描述优化技术的术语,在该技术中,您可以缓存先前计算的结果,并返回缓存的结果当再次需要相同的计算时。
动态规划是一种迭代解决递归性质问题的技术,适用于子问题计算重叠的情况。
动态编程通常使用制表来实现,但也可以使用记忆来实现。正如您所看到的,两者都不是另一个的“子集”。
一个合理的后续问题是:制表(典型的动态编程技术)和记忆之间有什么区别?
当您使用制表解决动态规划问题时,您解决的是“自下而上”的问题”,即首先解决所有相关的子问题,通常是通过填充一个n维表。然后根据表中的结果计算“顶部”/原始问题的解决方案。
如果您使用记忆来解决问题,您可以通过维护已解决的子问题的映射来实现。您按照“自上而下”的方式进行操作,即首先解决“顶部”问题(通常会向下递归以解决子问题)。
一张来自
此处<的精彩幻灯片/strike> (链接现已失效,但幻灯片仍然很好):其他资源:
Memoization is a term describing an optimization technique where you cache previously computed results, and return the cached result when the same computation is needed again.
Dynamic programming is a technique for solving problems of recursive nature, iteratively and is applicable when the computations of the subproblems overlap.
Dynamic programming is typically implemented using tabulation, but can also be implemented using memoization. So as you can see, neither one is a "subset" of the other.
A reasonable follow-up question is: What is the difference between tabulation (the typical dynamic programming technique) and memoization?
When you solve a dynamic programming problem using tabulation you solve the problem "bottom up", i.e., by solving all related sub-problems first, typically by filling up an n-dimensional table. Based on the results in the table, the solution to the "top" / original problem is then computed.
If you use memoization to solve the problem you do it by maintaining a map of already solved sub problems. You do it "top down" in the sense that you solve the "top" problem first (which typically recurses down to solve the sub-problems).
A good slide from
here(link is now dead, slide is still good though):Additional resources:
http://www.geeksforgeeks.org/dynamic-programming-set-1/
记忆化是一种跟踪先前解决的解决方案的简单方法(通常作为哈希键值对实现,而不是通常基于数组的制表),这样当再次遇到它们时就不会重新计算。它可以用于自下而上或自上而下的方法。
请参阅有关记忆化与制表的讨论。
因此,动态编程是一种通过解决递归关系/递归并通过表格或记忆存储先前找到的解决方案来解决某些类别问题的方法。记忆化是一种跟踪先前解决的问题的解决方案的方法,可与对给定输入集具有唯一确定性解决方案的任何函数一起使用。
http://www.geeksforgeeks.org/dynamic-programming-set-1/
Memoization is an easy method to track previously solved solutions (often implemented as a hash key value pair, as opposed to tabulation which is often based on arrays) so that they aren't recalculated when they are encountered again. It can be used in both bottom up or top down methods.
See this discussion on memoization vs tabulation.
So Dynamic programming is a method to solve certain classes of problems by solving recurrence relations/recursion and storing previously found solutions via either tabulation or memoization. Memoization is a method to keep track of solutions to previously solved problems and can be used with any function that has unique deterministic solutions for a given set of inputs.
记忆化和动态编程都只解决单个子问题一次。
记忆化使用递归并自上而下地工作,而动态编程则相反,自下而上地解决问题。
下面是一个有趣的类比 -
自上而下 - 首先你说我将接管世界。你会怎么做?你说我先占领亚洲。你会怎么做?我将首先接管印度。我将成为德里的首席部长,等等。
自下而上 - 你说我将成为德里的首席部长。然后我将接管印度,然后是亚洲所有其他国家,最后我将接管世界。
Both Memoization and Dynamic Programming solves individual subproblem only once.
Memoization uses recursion and works top-down, whereas Dynamic programming moves in opposite direction solving the problem bottom-up.
Below is an interesting analogy -
Top-down - First you say I will take over the world. How will you do that? You say I will take over Asia first. How will you do that? I will take over India first. I will become the Chief Minister of Delhi, etc. etc.
Bottom-up - You say I will become the CM of Delhi. Then will take over India, then all other countries in Asia and finally I will take over the world.
动态规划通常称为记忆化!
记忆化是自上而下的技术(通过分解来开始解决给定的问题),而动态编程是自下而上的技术(从琐碎的子问题开始解决,向上解决给定的问题)
DP找到解决方案从基本案例开始并向上进行。
DP 解决了所有子问题,因为它是自下而上的
<块引用>
与 Memoization 不同,Memoization 仅解决所需的子问题
DP 可能会更高效,因为它是迭代的
<块引用>
相反,Memoization 必须支付由于递归而产生的(通常是很大的)开销。
的
更简单地说,
记忆化使用自上而下的方法来解决问题,即从核心(主要)问题开始,然后将其分解为子问题,并以类似的方式解决这些子问题。在这种方法中,相同的子问题可能会出现多次并消耗更多的CPU周期,从而增加时间复杂度。而在动态规划中,相同的子问题不会被多次解决,但先前的结果将用于优化解决方案。
Dynamic Programming is often called Memoization!
Memoization is the top-down technique(start solving the given problem by breaking it down) and dynamic programming is a bottom-up technique(start solving from the trivial sub-problem, up towards the given problem)
DP finds the solution by starting from the base case(s) and works its way upwards.
DP solves all the sub-problems, because it does it bottom-up
DP has the potential to transform exponential-time brute-force solutions into polynomial-time algorithms.
DP may be much more efficient because its iterative
To be more simple,
Memoization uses the top-down approach to solve the problem i.e. it begin with core(main) problem then breaks it into sub-problems and solve these sub-problems similarly. In this approach same sub-problem can occur multiple times and consume more CPU cycle, hence increase the time complexity. Whereas in Dynamic programming same sub-problem will not be solved multiple times but the prior result will be used to optimize the solution.
(1) 记忆化和DP,在概念上,实际上是同一件事。因为:考虑DP的定义:“重叠子问题”“和最优子结构”。 Memoization完全具备这2个。
(2) Memoization是DP,由于递归很深,存在堆栈溢出的风险。 DP自下而上不存在这种风险。
(3) Memoization需要哈希表。因此需要额外的空间和一些查找时间。
所以回答这个问题:
-概念上,(1) 意味着它们是同一件事。
-考虑到(2),如果你真的想要,memoization是DP的子集,从某种意义上说,可以通过memoization解决的问题也可以通过DP解决,但是可以通过DP解决的问题可能无法通过memoization解决(因为它可能堆栈溢出)。
-考虑到(3),它们在性能上有微小差异。
(1) Memoization and DP, conceptually, is really the same thing. Because: consider the definition of DP: "overlapping subproblems" "and optimal substructure". Memoization fully possesses these 2.
(2) Memoization is DP with the risk of stack overflow is the recursion is deep. DP bottom up does not have this risk.
(3) Memoization needs a hash table. So additional space, and some lookup time.
So to answer the question:
-Conceptually, (1) means they are the same thing.
-Taking (2) into account, if you really want, memoization is a subset of DP, in a sense that a problem solvable by memoization will be solvable by DP, but a problem solvable by DP might not be solvable by memoization (because it might stack overflow).
-Taking (3) into account, they have minor differences in performance.
来自维基百科:
记忆化
动态规划
当将问题分解为更小/更简单的子问题时,我们经常会多次遇到相同的子问题 - 因此我们使用记忆化来保存先前计算的结果,这样我们就不需要重复它们。
动态编程经常遇到使用记忆化有意义的情况,但您可以使用其中一种技术而不必使用另一种技术。
From wikipedia:
Memoization
Dynamic Programming
When breaking a problem into smaller/simpler subproblems, we often encounter the same subproblem more then once - so we use Memoization to save results of previous calculations so we don't need to repeat them.
Dynamic programming often encounters situations where it makes sense to use memoization but You can use either technique without necessarily using the other.
我想看一个示例;
问题:
带有记忆化的递归
通过这种方式,我们可以借助 memo 数组来修剪(从树木或灌木中去除多余的材料)递归树并减少递归的大小树直到 nn。
动态规划
我们可以看到这个问题可以分解为子问题,并且它包含最优子结构性质,即它的最优解可以从子问题的最优解中高效地构造出来,我们可以使用动态规划来解决这个问题。
示例取自https://leetcode.com/problems/climbing-stairs/
I would like to go with an example;
Problem:
Recursion with Memoization
In this way we are pruning (a removal of excess material from a tree or shrub) recursion tree with the help of memo array and reducing the size of recursion tree upto nn.
Dynamic Programming
As we can see this problem can be broken into subproblems, and it contains the optimal substructure property i.e. its optimal solution can be constructed efficiently from optimal solutions of its subproblems, we can use dynamic programming to solve this problem.
Examples take from https://leetcode.com/problems/climbing-stairs/
只要想到两种方法,
在记忆化中,我们采用 (1.) 将每个函数调用保存在缓存中并从那里回调。它有点昂贵,因为它涉及递归调用。
在动态编程中,我们采用 (2.) 方式维护一个表,通过使用表(通常称为 dp 表)中保存的数据解决子问题,自下而上。
注意:
两者都适用于具有重叠子问题的问题。
由于递归函数调用期间涉及的开销,Memoization 的性能相对较差。
Just think of two ways,
In Memoization we go with (1.) where we save each function call in a cache and call back from there. Its a bit expensive as it involves recursive calls.
In Dynamic Programming we go with (2.) where we maintain a table, bottom up by solving subproblems using the data saved in the table, commonly referred as the dp-table.
Note:
Both are applicable to problems with Overlapping sub-problems.
Memoization performs comparatively poor to DP due to the overheads involved during recursive function calls.
动态编程 (DP) 和记忆化之间有一些相似之处,在大多数情况下,您可以通过记忆化来实现动态编程过程,反之亦然。但它们确实有一些差异,您应该在决定使用哪种方法时检查它们:
There're some similarities between dynamic programming (DP) and memoization and in most cases you can implement a dynamic programming process by memoization and vise versa. But they do have some differences and you should check them out when deciding which approach to use:
在动态编程中,
在记忆中,
In Dynamic Programming ,
In Memorization,
以下是用 Java 编写的斐波那契数问题的记忆化和 DP 示例。
这里的动态编程不涉及递归,因为它不受执行堆栈的限制,结果更快并且可以计算更高的值。
Here is a sample of Memoization and DP from Fibonacci Number problem written in Java.
Dynamic Programming here is not involving the recursion, as result faster and can calculate higher values because it is not limited by the execution stack.
动态编程是对普通递归算法的优化,它考虑输入的所有组合以提供最合适的答案。这种方法有一个缺点,即时间复杂度巨大。通过使用记忆可以提高效率。它将存储子问题的每个输出,并在算法尝试再次解决该子问题时直接给出答案。这可以使算法具有多项式时间复杂度。
Dynamic Programming is an optimization over plain recursive algorithm which consider all the combination of the input to provide the most suitable answer. This approach has one drawback, its huge time complexity. It can be made more efficient by the use of memoization. It will store every output of a subproblem and will directly give an answer, whenever that algorithm tries to solve that subproblem again. This can make the algorithm have polynomial time complexity.