我正在做一个没有动态规划的查找最长公共子序列(lsc)的练习,到目前为止,我有返回最长公共子序列的代码,但我还需要返回序列的长度,我必须做什么?
这是返回最长公共子序列的代码
def lcs(str1, str2):
if len(str1) == 0 or len(str2) == 0:
return ""
if str1[-1] == str2[-1]:
return lcs(str1[:-1], str2[:-1]) + str1[-1]
t1 = lcs(str1[:-1], str2)
t2 = lcs(str1, str2[:-1])
if len(t1) > len(t2):
return t1
else:
return t2
如何返回序列的长度?
1条答案
按热度按时间fnx2tebb1#
只要你的
return
语句返回原始格式中返回的字符串长度: