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

Leetcode | Longest Common Prefix

时间:2014-10-22 17:30:53      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   sp   div   on   

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

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

 

Leetcode | Longest Common Prefix

标签:style   blog   color   io   ar   for   sp   div   on   

原文地址:http://www.cnblogs.com/linyx/p/4043551.html

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