由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教recursive backtracking问题的时间复杂度的分析
相关主题
问一下Leetcode N-Queens II与N-Queens 解法有什么不同?one amazon interview problem
面试时 迭代还是递归Google onsite interview questions
Recursion算法复杂度计算一问enumerate all unique paths of robot
求教一个combination的问题,求好方法select k to maximize the minimum
一个stack怎么sortgoogle phone interview
求推荐学习recursive 算法的资料想贴一个我收集的算法高频题的博客不知道有没有人看
报offer没看懂Leetcode这道题的答案,请指点
Microsoft 一道算法题火帖里边的一道M的题Subarray sum
相关话题的讨论汇总
话题: 复杂度话题: recursive话题: dp话题: given
进入JobHunting版参与讨论
1 (共1页)
k*******t
发帖数: 144
1
实在弄不明白,比如cc18.7: Find the longest word made of the words in a given
list,或者leetcode中的solve soduku问题,如果用recursive backtracking 时间复
杂度为何为O(2^n)啊?最好解释下,抛link也行。多谢啦。
h**o
发帖数: 548
2
cc18.7.我怎么觉得是O(n^n)如果不考虑 DP 的话?
谁说是O(2^n)?

given

【在 k*******t 的大作中提到】
: 实在弄不明白,比如cc18.7: Find the longest word made of the words in a given
: list,或者leetcode中的solve soduku问题,如果用recursive backtracking 时间复
: 杂度为何为O(2^n)啊?最好解释下,抛link也行。多谢啦。

h**o
发帖数: 548
3
cc18.7.我怎么觉得是O(n^n)如果不考虑 DP 的话?
谁说是O(2^n)?

given

【在 k*******t 的大作中提到】
: 实在弄不明白,比如cc18.7: Find the longest word made of the words in a given
: list,或者leetcode中的solve soduku问题,如果用recursive backtracking 时间复
: 杂度为何为O(2^n)啊?最好解释下,抛link也行。多谢啦。

k*******t
发帖数: 144
4
http://thenoisychannel.com/2011/08/08/retiring-a-great-intervie 这两个题类似,link中的题更简单,只要求check一个string是否有dict的word组成的。recursion的复杂度就是O(2^n)啊。考虑DP的复杂度才是O(n*n)。虽然link里说了recursion的复杂度reduce to determine the number of possible segmentations. 可是还是想不明白

【在 h**o 的大作中提到】
: cc18.7.我怎么觉得是O(n^n)如果不考虑 DP 的话?
: 谁说是O(2^n)?
:
: given

1 (共1页)
进入JobHunting版参与讨论
相关主题
火帖里边的一道M的题Subarray sum一个stack怎么sort
请教:这个10来行的leetcode程序有什么问题?求推荐学习recursive 算法的资料
longest word made of other words报offer
leetcode Palindrome PartitioningMicrosoft 一道算法题
问一下Leetcode N-Queens II与N-Queens 解法有什么不同?one amazon interview problem
面试时 迭代还是递归Google onsite interview questions
Recursion算法复杂度计算一问enumerate all unique paths of robot
求教一个combination的问题,求好方法select k to maximize the minimum
相关话题的讨论汇总
话题: 复杂度话题: recursive话题: dp话题: given