leetCode 14. Longest Common Prefix文字列
849 ワード
14. Longest Common Prefix
Write a function to find the longest common prefix string amongst an array of strings.
文字列の一番長い接頭辞を求めます.
コードは次のとおりです.
Write a function to find the longest common prefix string amongst an array of strings.
文字列の一番長い接頭辞を求めます.
コードは次のとおりです.
class Solution {
public:
string longestCommonPrefix(vector& strs) {
if(strs.size() == 0)
return "";
int minStrLen = strs[0].size();
string result;
for(int i = 0 ;i
2016-08-10 17:44:00