[Leetcode]14. 最长公共前缀

x33g5p2x  于2022-07-04 转载在 其他  
字(3.6k)|赞(0)|评价(0)|浏览(346)

一、题目描述

难度:简单
描述

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

示例 1

  1. 输入:strs = ["flower","flow","flight"]
  2. 输出:"fl"

示例 2

  1. 输入:strs = ["dog","racecar","car"]
  2. 输出:""
  3. 解释:输入不存在公共前缀。

提示

  • 1 <= strs.length <= 200
  • 0 <= strs[i].length <= 200
  • strs[i] 仅由小写英文字母组成

二、分析过程

求最长公共前缀,所以这里只考虑前缀即可,因此可以首先取第一个字符串进行遍历,然后跟字符串数组里的其他字符串按照顺序依次比对每一个字符,直到遇到不同的字符为止。即纵向扫描法。这里借用Leetcode的图解:

三、解题过程

1.纵向扫描法

首先根据以上思路,自己实现的解法:

  1. class Solution {
  2. public String longestCommonPrefix(String[] strs) {
  3. //最长公共前缀,考虑前缀即可
  4. int index = 0;
  5. boolean flag = true;
  6. String result = "";
  7. for(int i = 0;i < strs[0].length() && flag;i++){
  8. index++;
  9. char current = strs[0].charAt(i);
  10. for(int j = 0;j< strs.length;j++){
  11. if(i >= strs[j].length() || current != strs[j].charAt(i)){
  12. flag = false;
  13. index--;
  14. break;
  15. }
  16. }
  17. }
  18. return index > 0 ? strs[0].substring(0,index):"";
  19. }
  20. }

2.纵向扫描法:

参考官方的纵向扫描的解法:

  1. class Solution {
  2. public String longestCommonPrefix(String[] strs) {
  3. if (strs == null || strs.length == 0) {
  4. return "";
  5. }
  6. int length = strs[0].length();
  7. int count = strs.length;
  8. for (int i = 0; i < length; i++) {
  9. char c = strs[0].charAt(i);
  10. for (int j = 1; j < count; j++) {
  11. if (i == strs[j].length() || strs[j].charAt(i) != c) {
  12. return strs[0].substring(0, i);
  13. }
  14. }
  15. }
  16. return strs[0];
  17. }
  18. }

复杂度分析

  • 时间复杂度:O(mn),其中 m 是字符串数组中的字符串的平均长度,n 是字符串的数量。最坏情况下,字符串数组中的每个字符串的每个字符都会被比较一次。
  • 空间复杂度:O(1)。使用的额外空间复杂度为常数。

3.横向扫描法:

参考官方的横向扫描法:对字符串数组中的每一项,进行两两对比,找出最长前缀,与数组的下一项再取最长前缀,依次类推。思路简单,但是复杂度没有提高。官方图解:

  1. class Solution {
  2. public String longestCommonPrefix(String[] strs) {
  3. if (strs == null || strs.length == 0) {
  4. return "";
  5. }
  6. String prefix = strs[0];
  7. int count = strs.length;
  8. for (int i = 1; i < count; i++) {
  9. prefix = longestCommonPrefix(prefix, strs[i]);
  10. if (prefix.length() == 0) {
  11. break;
  12. }
  13. }
  14. return prefix;
  15. }
  16. public String longestCommonPrefix(String str1, String str2) {
  17. int length = Math.min(str1.length(), str2.length());
  18. int index = 0;
  19. while (index < length && str1.charAt(index) == str2.charAt(index)) {
  20. index++;
  21. }
  22. return str1.substring(0, index);
  23. }
  24. }

复杂度分析

  • 时间复杂度:O(mn),其中 m 是字符串数组中的字 符串的平均长度,n 是字符串的数量。最坏情况下,字符串数组中的每个字符串的每个字符都会被比较一次。
  • 空间复杂度:O(1)。使用的额外空间复杂度为常数。

4.分治法

参考官方的分治法,自我感觉其实跟横向扫描差不多,只是实现方式不同,时间复杂度理论上是相同的。下面参考官方图解:

  1. class Solution {
  2. public String longestCommonPrefix(String[] strs) {
  3. if (strs == null || strs.length == 0) {
  4. return "";
  5. } else {
  6. return longestCommonPrefix(strs, 0, strs.length - 1);
  7. }
  8. }
  9. public String longestCommonPrefix(String[] strs, int start, int end) {
  10. if (start == end) {
  11. return strs[start];
  12. } else {
  13. int mid = (end - start) / 2 + start;
  14. String lcpLeft = longestCommonPrefix(strs, start, mid);
  15. String lcpRight = longestCommonPrefix(strs, mid + 1, end);
  16. return commonPrefix(lcpLeft, lcpRight);
  17. }
  18. }
  19. public String commonPrefix(String lcpLeft, String lcpRight) {
  20. int minLength = Math.min(lcpLeft.length(), lcpRight.length());
  21. for (int i = 0; i < minLength; i++) {
  22. if (lcpLeft.charAt(i) != lcpRight.charAt(i)) {
  23. return lcpLeft.substring(0, i);
  24. }
  25. }
  26. return lcpLeft.substring(0, minLength);
  27. }
  28. }

时间复杂度分析

  • 时间复杂度:O(mn),其中m是字符串数组中字符串的平均长度,n是字符串的数量。时间复杂度的递推式是:T(n)=2*T(n/2) + O(m),通过计算可得T(n)=O(mn).
  • 空间复杂度:O(mlogn),空间复杂度主要取决于递归调用的层数,层数最大为logn,每层需要m的空间存储返回结果。

5.二分查找法

参考官方的二分查找法,自我感觉其实跟纵向扫描法,只是以二分查找的方式确定位数。

  1. class Solution {
  2. public String longestCommonPrefix(String[] strs) {
  3. if (strs == null || strs.length == 0) {
  4. return "";
  5. }
  6. int minLength = Integer.MAX_VALUE;
  7. for (String str : strs) {
  8. minLength = Math.min(minLength, str.length());
  9. }
  10. int low = 0, high = minLength;
  11. while (low < high) {
  12. int mid = (high - low + 1) / 2 + low;
  13. if (isCommonPrefix(strs, mid)) {
  14. low = mid;
  15. } else {
  16. high = mid - 1;
  17. }
  18. }
  19. return strs[0].substring(0, low);
  20. }
  21. public boolean isCommonPrefix(String[] strs, int length) {
  22. String str0 = strs[0].substring(0, length);
  23. int count = strs.length;
  24. for (int i = 1; i < count; i++) {
  25. String str = strs[i];
  26. for (int j = 0; j < length; j++) {
  27. if (str0.charAt(j) != str.charAt(j)) {
  28. return false;
  29. }
  30. }
  31. }
  32. return true;
  33. }
  34. }

复杂度分析

  • 时间复杂度:O(mnlogm),二分查找的迭代执行次数是 O(logm),每次迭代最多需要比较 mn个字符,因此总时间复杂度是 O(mnlogm)。
  • 空间复杂度:O(1)O(1)。使用的额外空间复杂度为常数。

相关文章