标签:ring ret sub dog ++ problems tco flight http
编写一个函数来查找字符串数组中的最长公共前缀。
如果不存在公共前缀,返回空字符串 ""。
示例 1:
输入: ["flower","flow","flight"]
输出: "fl"
示例 2:
输入: ["dog","racecar","car"]
输出: ""
解释: 输入不存在公共前缀
链接:https://leetcode-cn.com/problems/longest-common-prefix
哎真捞!暴力
public static String longestCommonPrefix(String[] strs) { if(strs.length==0) return ""; else if(strs[0].length()==0) return ""; else if(strs.length==1) { return strs[0]; } String tmp =strs[0]; for(int i=0;i<tmp.length();i++) { for(int j=1;j<strs.length;j++) { if(i>=strs[j].length()) { return strs[j]; } if(strs[j].charAt(i)!=tmp.charAt(i)) { return tmp.substring(0,i); } } } return tmp; }
标签:ring ret sub dog ++ problems tco flight http
原文地址:https://www.cnblogs.com/cocobear9/p/13132077.html