上一页 1 ··· 19 20 21 22 23
摘要: http://www.cnblogs.com/steven_oyj/archive/2010/05/22/1741376.html1、概念 回溯算法实际上一个类似枚举的搜索尝试过程,主要是在搜索尝试过程中寻找问题的解,当发现已不满足求解条件时,就“回溯”返回,尝试别的路径。 回溯法是一种选优搜索法,... 阅读全文
posted @ 2014-06-18 11:32 Ryan in C++ 阅读(1187) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/asuran/archive/2010/01/26/1656399.html贪心算法1.贪心选择性质所谓贪心选择性质是指所求问题的整体最优解可以通过一系列局部最优的选择,即贪心选择来达到。这是贪心算法可行的第一个基本要素,也是贪心算法与动态规划算法的主要... 阅读全文
posted @ 2014-06-14 16:20 Ryan in C++ 阅读(1357) 评论(0) 推荐(1) 编辑
摘要: http://en.wikipedia.org/wiki/Recursion_(computer_science)#Recursive_functions_and_algorithmsA commoncomputer programmingtactic is to divide a problem ... 阅读全文
posted @ 2014-06-13 10:39 Ryan in C++ 阅读(190) 评论(0) 推荐(0) 编辑
摘要: Devote to coding! 阅读全文
posted @ 2014-02-19 22:29 Ryan in C++ 阅读(114) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23