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

Posted 灰太狼_cxh

tags:

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

题目:

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

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

示例 1:

输入:strs = ["flower","flow","flight"]

输出:"fl"

示例 2:

输入:strs = ["dog","racecar","car"]

输出:""

解释:输入不存在公共前缀。

代码实现:

class Solution 
public String longestCommonPrefix(String[] strs)
if (strs == null || strs.length == 0)
return "";

String prefix = strs[0];
int count = strs.length;
for (int i = 1; i < count; i++)
prefix = longestCommonPrefix(prefix, strs[i]);
if (prefix.length() == 0)
break;


return prefix;


public String longestCommonPrefix(String str1, String str2)
int length = Math.min(str1.length(), str2.length());
int index = 0;
while (index < length && str1.charAt(index) == str2.charAt(index))
index++;

return str1.substring(0, index);


以上是关于#yyds干货盘点# leetcode算法题:最长公共前缀的主要内容,如果未能解决你的问题,请参考以下文章

#yyds干货盘点# leetcode算法题:最长回文串

#yyds干货盘点# LeetCode面试题:无重复字符的最长子串

#yyds干货盘点#马拉车算法解最长回文子串!Manacher

#yyds干货盘点# leetcode算法题:括号生成

#yyds干货盘点#“愚公移山”的方法解atoi,自以为巧妙!

#yyds干货盘点# leetcode算法题:全排列