LeetCode 14. 最长公共前缀

目录结构

1.题目

2.题解


1.题目

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

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

示例:

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


输入: ["dog","racecar","car"]
输出: ""
解释: 输入不存在公共前缀。

 说明:

所有输入只包含小写字母 a-z 。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/longest-common-prefix
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2.题解

纵向扫描,从前往后遍历所有字符串的每一列,比较相同列上的字符是否相同:

  • 如果相同则继续对下一列进行比较,
  • 如果不相同则当前列不再属于公共前缀,当前列之前的部分为最长公共前缀。
public class Solution14 {
    public String longestCommonPrefix(String[] strs) {
        if (strs == null || strs.length == 0) {
            return "";
        }
        int len = strs[0].length();
        int count = strs.length;
        for (int i = 0; i < len; i++) {
            char c = strs[0].charAt(i);
            for (int j = 1; j < count; j++) {
                if (i == strs[j].length() || strs[j].charAt(i) != c) {
                    return strs[0].substring(0, i);
                }
            }
        }
        return strs[0];
    }
}
  • 时间复杂度:O(mn)
  • 空间复杂度:O(1)

你可能感兴趣的:(LeetCode)