Last active
September 24, 2016 11:09
-
-
Save daoleno/d32bdff942958c094471b22206cde95a to your computer and use it in GitHub Desktop.
状态传递
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
每个阶段只有一个状态->递推; | |
每个阶段的最优状态都是由上一个阶段的最优状态得到的->贪心; | |
每个阶段的最优状态是由之前所有阶段的状态的组合得到的->搜索; | |
每个阶段的最优状态可以从之前某个阶段的某个或某些状态直接得到而不管之前这个状态是如何得到的->动态规划。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment