码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode刷题之Longest Common Prefix(14)

时间:2018-12-23 11:13:20      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:static   说明   一个   return   编写   indexof   公共前缀   longest   sub   

编写一个函数来查找字符串数组中的最长公共前缀。

如果不存在公共前缀,返回空字符串 ""。

示例 1:

输入: ["flower","flow","flight"]
输出: "fl"
示例 2:

输入: ["dog","racecar","car"]
输出: ""
解释: 输入不存在公共前缀。
说明:

所有输入只包含小写字母 a-z 。

思路:假设第一个字符串就是最长前缀,依次和剩下的所有字符串对比,如果不是的话,依次减去一个字符再循环对比一遍,直到找到最大前缀或者pre为"",String.indexOf("") = 0

代码:

Java

public static String solution(String[] strs){
if(strs == null || strs.length == 0) return "";
String pre = strs[0];
int i = 1;
while(i < strs.length){
while(strs[i].indexOf(pre) != 0) {
pre = pre.substring(0, pre.length() - 1);
}
i++;
}
return pre;
}

leetcode刷题之Longest Common Prefix(14)

标签:static   说明   一个   return   编写   indexof   公共前缀   longest   sub   

原文地址:https://www.cnblogs.com/Simon-cat/p/10163325.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!