热门标签
更多>
搜索结果
查询Tags标签: maxLenght,共有 2条记录-
最长公共子串
链接 给定两个字符串str1和str2,输出两个字符串的最长公共子串,如果最长公共子串为空,输出-1。 import java.util.Scanner;public class Main {private static String solve(String str1, String str2) {int maxLenght = 0, maxIndex = 0;int row = 0, col = str2.lengt…
2021/10/13 23:18:06 人评论 次浏览 -
最长公共子串
链接 给定两个字符串str1和str2,输出两个字符串的最长公共子串,如果最长公共子串为空,输出-1。 import java.util.Scanner;public class Main {private static String solve(String str1, String str2) {int maxLenght = 0, maxIndex = 0;int row = 0, col = str2.lengt…
2021/10/13 23:18:06 人评论 次浏览