Leetcode——最长公共前缀

Posted Yawn,

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode——最长公共前缀相关的知识,希望对你有一定的参考价值。

1. 题目

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

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

示例 1:
输入:strs = [“flower”,“flow”,“flight”]
输出:“fl”

示例 2:
输入:strs = [“dog”,“racecar”,“car”]
输出:""
解释:输入不存在公共前缀。

2. 题解

class Solution {
    public String longestCommonPrefix(String[] strs) {
        if( strs == null || strs.length == 0)
            return "";
        String res = strs[0];   //默认第一个字符串为最长公共前缀
        int i = 1;
        while(i < strs.length){
            //不断的截取
            while(strs[i].indexOf(res) != 0){
                res = res.substring(0, res.length() - 1);   //不匹配pre就长度减一
            }
            i++;
        }
        return res;
    }
}

以上是关于Leetcode——最长公共前缀的主要内容,如果未能解决你的问题,请参考以下文章

leetcode14最长公共前缀

leetCode第14题——最长公共前缀

[leetcode 14] 最长公共前缀

LeetCode:最长公共前缀

LeetCode:最长公共前缀

#yyds干货盘点# leetcode算法题:最长公共前缀