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

LeetCode[String]: Longest Common Prefix

时间:2015-03-04 19:13:18      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:leetcode   string   common   prefix   c++   

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

这个题目非常简单,只要弄清楚题意就可以非常快地解决,我的C++代码实现如下:

    string longestCommonPrefix(vector<string> &strs) {
        if (strs.empty()) return "";

        string commonPrefix = strs[0];
        for (int i = 1; i < strs.size(); ++i) {
            int j = 0;
            for ( ; j < commonPrefix.size() && j < strs[i].size(); ++j) {
                if (commonPrefix[j] != strs[i][j]) break;
            }
            commonPrefix = commonPrefix.substr(0, j);
        }

        return commonPrefix;
    }

时间性能如下:

技术分享

LeetCode[String]: Longest Common Prefix

标签:leetcode   string   common   prefix   c++   

原文地址:http://blog.csdn.net/chfe007/article/details/44062645

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