LeetCode 14 Longest Common Prefix(最长公共前缀)
Problem: 找出给定的string数组中最长公共前缀
由于是找前缀,因此调用indexOf函数应当返回0(如果该字符子串为字符串的前缀时),如果不是则返回-1
Return:
the index of the first occurrence of the specified substring, or
-1
if there is no such occurrence.参考代码:
package leetcode_50;
/***
*
* @author pengfei_zheng
* 最长公共前缀
*/
public class Solution14 {
public String longestCommonPrefix(String[] strs) {
if(strs == null || strs.length == 0) return "";//字符串数组为空或者长度为0
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;//返回前缀
}
}
作者: 伊甸一点
出处: http://www.cnblogs.com/zpfbuaa/
本文版权归作者伊甸一点所有,欢迎转载和商用(须保留此段声明),且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.
原文链接 如有问题, 可邮件(zpflyfe@163.com)咨询.