tyoi_c(lcs)

參考這位大佬 一、最長公共子序列 int dp[1000][1000] int Lcs(string x,string y) { for(int i=0;i<=x.length();i++) for(int j=0;j<=y.length();j++) if(i==0||j==0) dp[i][j]=0; else if(x[i-1]==y[j-1])
相關文章
相關標籤/搜索
本站公眾號
   歡迎關注本站公眾號,獲取更多信息