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

Longest Common Prefix

时间:2014-12-04 00:42:55      阅读:171      评论:0      收藏:0      [点我收藏+]

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

class Solution {
public:
    string longestCommonPrefix(vector<string> &strs) {
        int ind, tail, len, tmp;
        len = strs.size();
        if(len == 0) return "";
        if(len == 1) return strs[0];
        ind = 0;
        for(int i=1;i<len;i++){
            if(strs[i].length() < strs[ind].length()){
                ind = i;
            }
        }
        tmp = tail = strs[ind].length() - 1;
        for(int i=0;i<len;i++){
            int k=0;
            while(k<=tmp){
                if(strs[i][k] == strs[ind][k]){
                    k++;
                }
                else break;
            }
            tmp = k-1;
        }
        return strs[ind].substr(0, tmp+1);
    }
};

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

Longest Common Prefix

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

原文地址:http://www.cnblogs.com/code-swan/p/4141311.html

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