-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path14.cpp
More file actions
40 lines (37 loc) · 899 Bytes
/
14.cpp
File metadata and controls
40 lines (37 loc) · 899 Bytes
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
//
// 14.cpp
// LeetCode
//
// Created by 张佐玮 on 15/6/1.
// Copyright (c) 2015年 JarvisZhang. All rights reserved.
//
// Title: Longest Common Prefix
//
#include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
string longestCommonPrefix(vector<string>& strs) {
int border = 0;
bool flag = true;
string result("");
if (strs.empty()) {
return result;
}
while (flag && border < strs[0].length()) {
char ch = strs[0][border];
for (int i = 1; i < strs.size(); i++) {
if (border >= strs[i].length() || strs[i][border] != ch) {
flag = false;
break;
}
}
if (flag) {
result.push_back(ch);
}
border++;
}
return result;
}
};