由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - CLRS Exercise 4.4-3
相关主题
这题有啥好思路吗请大家推荐一本练习java coding的书?类似于exercise+solution的??
问道Google题目Factorial Trailing Zeroes这道题为什么用pow(5,k)而不是 f*=5;?
究竟什么定义了DPLeetcode-010: Regular Expression Match (DP Solution)
问个白痴问题,DP到底算不算递归?请教一道算法题
看来还是要看算法导论啊算法题目一问
where to find CLRS solutionCS专业的几本书,面试用(更新完)
LC有序数组删重复元素的题怎么最快?请教一个面试问题,careercup上的
再来讨论一个题!一道google面试题的讨论
相关话题的讨论汇总
话题: solution话题: subproblem话题: like话题: recurrence话题: inputs
进入JobHunting版参与讨论
1 (共1页)
M**8
发帖数: 25
1
while looking at the solution at http://atekihcan.github.io/CLRS/E04.04-03/, I feel like that is probably wrong. in my understanding,
i value cost
0 n
1 n
--- + 2
2
2 n
--- + 2
2
---------- + 2 instead of
2
n
---- + 2
2*2
what do you think? the solution suggests subproblem will be
n
---- + 2
2^i
for me, sounds like the whole expression in T() should be the new n for next
recurrence?
Thank you for your inputs.
1 (共1页)
进入JobHunting版参与讨论
相关主题
一道google面试题的讨论看来还是要看算法导论啊
前几天那个关于正负数stable排序的问题的帖子where to find CLRS solution
两种DPLC有序数组删重复元素的题怎么最快?
jump game II的证明再来讨论一个题!
这题有啥好思路吗请大家推荐一本练习java coding的书?类似于exercise+solution的??
问道Google题目Factorial Trailing Zeroes这道题为什么用pow(5,k)而不是 f*=5;?
究竟什么定义了DPLeetcode-010: Regular Expression Match (DP Solution)
问个白痴问题,DP到底算不算递归?请教一道算法题
相关话题的讨论汇总
话题: solution话题: subproblem话题: like话题: recurrence话题: inputs