共计 1110 个字符,预计需要花费 3 分钟才能阅读完成。
最长公共前缀
题目形容:编写一个函数来查找字符串数组中的最长公共前缀。
如果不存在公共前缀,返回空字符串 “”。
示例阐明请见 LeetCode 官网。
起源:力扣(LeetCode)
链接:https://leetcode-cn.com/probl…
著作权归领扣网络所有。商业转载请分割官网受权,非商业转载请注明出处。
解法一:字符数组法
把第一个字符串放到字符数组 chars 中,从第二个字符串开始,挨个字符遍历比拟,失去每次不相等的索引地位 p,如果 p - 1 小于 0,则示意没有公共前缀;遍历前面的字符串,反复这一过程。两头只有 p - 1 小于 0,间接返回空字符串,没有公共前缀。遍历完结后,获取 chars 数组中从 0 到 p - 1 地位的字符,返回即为最长公共前缀。
public class Solution {public static String longestCommonPrefix(String[] strs) {if (strs == null || strs.length == 0 || strs[0] == null || strs[0].length() == 0) {return "";}
char[] chars = strs[0].toCharArray();
int maxIndex = strs[0].length() - 1;
for (int i = 1; i < strs.length && maxIndex >= 0; i++) {String curStr = strs[i];
if (curStr == null || curStr.length() == 0) {return "";}
int curMax = maxIndex;
for (int j = 0; j < curStr.length() && j <= curMax && maxIndex >= 0; j++) {if (curStr.charAt(j) != chars[j]) {
maxIndex = j - 1;
break;
} else {maxIndex = j;}
}
}
if (maxIndex < 0) {return "";}
StringBuilder result = new StringBuilder();
for (int i = 0; i <= maxIndex; i++) {result.append(chars[i]);
}
return result.toString();}
public static void main(String[] args) {System.out.println(longestCommonPrefix(new String[]{"flower", "flow", "flight"}));
System.out.println(longestCommonPrefix(new String[]{"ab", "a"}));
}
}
正文完