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

最长公共前缀

时间:2019-04-20 19:42:04      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:i++   示例   函数   code   bsp   common   empty   ==   ace   

题目:

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

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

示例 1:

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

示例 2:

输入: ["dog","racecar","car"]
输出: ""
解释: 输入不存在公共前缀。
class Solution {
    public String longestCommonPrefix(String[] strs) {
        
        if(strs.length==0)
            return "";
        
        String prefix=strs[0];
        for(int i=1;i<strs.length;i++)
        {
            while(strs[i].indexOf(prefix)!=0)
            {
                prefix=prefix.substring(0, strs.length-1);
                if(prefix.isEmpty()) return "";
            }
        }        
        return prefix;
    }
}

 

最长公共前缀

标签:i++   示例   函数   code   bsp   common   empty   ==   ace   

原文地址:https://www.cnblogs.com/Optimism/p/10742269.html

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