求字符串数组最长公共前缀
Posted 32ddd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求字符串数组最长公共前缀相关的知识,希望对你有一定的参考价值。
public class LongestCommonPrefix { public String longestCommonPrefix(String[] strs) { if(strs == null) return null; if(strs.length == 0) return ""; String s = strs[0]; for(int i = 0; i < s.length(); i ++) { for(int j = 1; j < strs.length; j ++) { if(strs[j].length()==i||strs[j].charAt(i)!= s.charAt(i))//条件先后顺序不能写反了,否则数组越界 return s.substring(0,i); } } return s; } public static void main(String[] args) { LongestCommonPrefix lc = new LongestCommonPrefix(); String[] strs = {"aa" , "a"}; System.out.println(lc.longestCommonPrefix(strs)); } }
以上是关于求字符串数组最长公共前缀的主要内容,如果未能解决你的问题,请参考以下文章
2021-09-15:最长公共前缀。编写一个函数来查找字符串数组中的最长公共前缀,如果不存在公共前缀,返回空字符串 ““。力扣14。