码迷,mamicode.com
首页 > 其他好文 > 详细

Longest Common Prefix

时间:2015-04-12 16:09:54      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

Write a function to find the longest common prefix string amongst an array of strings.

 

Analyse: 找一些序列的最长前缀子序列。

 

 1 class Solution {
 2 public:
 3     string longestCommonPrefix(vector<string> &strs) {
 4         if(strs.size() == 0) return "";
 5         
 6         string result = strs[0];
 7         for(int i = 1; i < strs.size(); i++){
 8             int index = 0;
 9             for(int j = 0; j < result.length(); j++){
10                 if(strs[i][j] == result[j]) index++;
11                 else{
12                     result = result.substr(0, index);
13                     break;
14                 }
15             }
16         }
17         return result;
18     }
19 };

 

Longest Common Prefix

标签:

原文地址:http://www.cnblogs.com/amazingzoe/p/4419608.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!