forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
longestCommonPrefix.cpp
44 lines (39 loc) · 1.09 KB
/
longestCommonPrefix.cpp
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
44
// Source : https://oj.leetcode.com/problems/longest-common-prefix/
// Author : Hao Chen
// Date : 2014-07-03
/**********************************************************************************
*
* Write a function to find the longest common prefix string amongst an array of strings.
*
*
**********************************************************************************/
#include <iostream>
#include <string>
#include <vector>
using namespace std;
string longestCommonPrefix(vector<string> &strs) {
string word;
if (strs.size()<=0) return word;
for(int i=1; i<=strs[0].size(); i++){
string w = strs[0].substr(0, i);
bool match = true;
int j=1;
for(j=1; j<strs.size(); j++){
if (i>strs[j].size() || w!=strs[j].substr(0, i) ) {
match=false;
break;
}
}
if (!match) {
return word;
}
word = w;
}
return word;
}
int main()
{
const char* s[]={"abab","aba","abc"};
vector<string> v(s, s+3);
cout << longestCommonPrefix(v) <<endl;
}