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

Leetcode14

时间:2020-02-13 16:59:21      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:comm   common   return   longest   dex   i++   java   turn   code   

Leetcode 14

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

使用了Java语言编写,主要是利用函数indexOf和substring,从而进行比较和剪切。

public String longestCommonPrefix(String[] strs) {
        if (strs == null || strs.length < 1)
            return "";
        String a=strs[0];
        for(int i=1;i<strs.length;i++){
            while(strs[i].indexOf(a)!=0){//进行比较
                a=a.substring(0,a.length()-1);//裁剪字符串
                if(a.isEmpty()){//如果裁剪的字符串是空串
                    return "";
                }
            }
        }
        return a;
    }

Leetcode14

标签:comm   common   return   longest   dex   i++   java   turn   code   

原文地址:https://www.cnblogs.com/Yunrui-blogs/p/12303990.html

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