Python实现动态规划时,[None for i in range(len(B))]和[None]*len(B)得出不同结果
def lcs_memo(x, y, i, j, c): if i < 0 or j < 0: return 0 if c[i][j] is None: if x[i] == y[j]: c[i][j] = lcs_memo(x, y, i - 1, j - 1, c)…
- 共 1 页
- 1
def lcs_memo(x, y, i, j, c): if i < 0 or j < 0: return 0 if c[i][j] is None: if x[i] == y[j]: c[i][j] = lcs_memo(x, y, i - 1, j - 1, c)…
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。