LC 最长公共前缀

Posted yangbocsu

tags:

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

LC 最长公共前缀


编写一个函数来查找字符串数组中的最长公共前缀。
如果不存在公共前缀,返回空字符串 “”。

【代码】

class Solution {
    public String longestCommonPrefix(String[] strs) {
        //边界条件判断
        if (strs == null || strs.length == 0)
            return "";
        //默认第一个字符串是他们的公共前缀
        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;

    }
}

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

lc1977-好题赏析:lcp(最长公共前缀)优化dp

leetcode-14.最长公共前缀(图)

最长公共前缀

14. 最长公共前缀

最长的公共前缀

最长公共前缀