最長公共子串

2021-10-10 01:23:06 字數 807 閱讀 3364

給定兩個字串str1和str2,輸出兩個字串的最長公共子串,如果最長公共子串為空,輸出-1。

示例1複製

"1ab2345cd","12345ef"
複製

"2345"
1≤∣str1∣,∣str2∣≤5 0001 \leq |str_1|, |str_2| \leq 5\,0001≤∣str1​∣,∣str2​∣≤5000
1.o(n²),比較巧妙的思路,維護了乙個最大長度變數

這題要注意與lcs的區別,lcs是dp

#

# longest common substring

# @param str1 string字串 the string

# @param str2 string字串 the string

# @return string字串

#class solution:

def lcs(self , str1 , str2 ):

# write code here

if len(str1)str1,str2=str2,str1

res=""

max_len=0

for i in range(len(str1)):

if str1[i-max_len:i+1] in str2:

res=str1[i-max_len:i+1]

max_len+=1

if not res:return '-1'

return res

最長公共子串行 最長公共子串

1 最長公共子串行 採用動態規劃的思想,用乙個陣列dp i j 記錄a字串中i 1位置到b字串中j 1位置的最長公共子串行,若a i 1 b j 1 那麼dp i j dp i 1 j 1 1,若不相同,那麼dp i j 就是dp i 1 j 和dp i j 1 中的較大者。class lcs el...

最長公共子串行 最長公共子串

1.區別 找兩個字串的最長公共子串,這個子串要求在原字串中是連續的。而最長公共子串行則並不要求連續。2 最長公共子串 其實這是乙個序貫決策問題,可以用動態規劃來求解。我們採用乙個二維矩陣來記錄中間的結果。這個二維矩陣怎麼構造呢?直接舉個例子吧 bab 和 caba 當然我們現在一眼就可以看出來最長公...

最長公共子串 最長公共子串行

子串要求連續 子串行不要求連續 之前的做法是dp求子序列 include include include using namespace std const int inf 0x3f3f3f3f const int mod 1000000007 string s1,s2 int dp 1010 10...