OfferOrientedAlgorithms icon indicating copy to clipboard operation
OfferOrientedAlgorithms copied to clipboard

《剑指Offer:数据结构与算法名企面试题精讲》

Results 3 OfferOrientedAlgorithms issues
Sort by recently updated
recently updated
newest added

面试题102 下面的公式解读,当i==0&&j>0时,f(i,j)=0 这句解释有问题,按照下面的题解和leetcode 中nums = [0,0,0,0,0,0,0,0,1],target=1这种情况来看,状态转移应该只有两种情况,即f(0,0)=1 and f(i,j)=f(i-1,j)+f(i-1,j-nums[i-1])

勘误: 第138页,图下面第2段,最后一个数字应该是13,而不是15.