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

[LintCode] 最长公共前缀

时间:2015-06-29 16:36:19      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

 1 class Solution {
 2 public:    
 3     /**
 4      * @param strs: A list of strings
 5      * @return: The longest common prefix
 6      */
 7     string longestCommonPrefix(vector<string> &strs) {
 8         // write your code here
 9         string lcp = "";
10         if (strs.empty()) return lcp;
11         for (int i = 0; i < (int)strs[0].length(); i++) {
12             int pos = lcp.length();
13             char letter = strs[0][pos];
14             for (int j = 1; j < (int)strs.size(); j++)
15                 if (strs[j].length() == pos || strs[j][pos] != letter)
16                     return lcp;
17             lcp += letter;
18         }
19         return lcp;
20     }
21 };

 

[LintCode] 最长公共前缀

标签:

原文地址:http://www.cnblogs.com/jcliBlogger/p/4607569.html

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