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

14. 最长公共前缀

时间:2020-06-15 17:30:16      阅读:71      评论:0      收藏:0      [点我收藏+]

标签: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;

    }

 

14. 最长公共前缀

标签:ring   ret   sub   dog   ++   problems   tco   flight   http   

原文地址:https://www.cnblogs.com/cocobear9/p/13132077.html

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