最长公共前缀

最长公共前缀

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

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

示例 1:

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

示例 2:

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

提示:

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

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

class Solution {
public:
string longestCommonPrefix(vector<string> &strs) {
if (strs.size()==0)
{
return "";
}
vector<int> minLen;
for (int i = 0; i < strs.size(); ++i) {
minLen.push_back(strs[i].size());
}
sort(minLen.begin(),minLen.end());
int min=minLen[0];
int i=0,flag=1;
for (; i < min&&flag; ++i) {
for (int j = 0; j < strs.size()-1; ++j) {
if (strs[j][i]!=strs[j+1][i])
{
flag=0;
i--;
break;
}
}
}
if (i==0){
return "";
}
return strs[0].substr(0,i);
}
};

int main() {
vector<string> v={"a"};
Solution s;
cout<<s.longestCommonPrefix(v)<<endl;
return 0;
}