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

Longest Common Prefix

时间:2015-10-30 09:20:08      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

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

class Solution {
public:
    string longestCommonPrefix(vector<string>& strs) {
        string result = "";
        if(strs.empty())
            return result;
        for(int i = 0; i < strs[0].size(); i++)
        {
            for(int j = 1; j < strs.size(); j++)
            {
                if(strs[j - 1][i] != strs[j][i])
                    return result;
            }
            result += strs[0][i];
        }
        return result;
    }
};
  • 一定要注意:strs[0].size();默认了strs[0]存在;所以前面必须先测试strs非空,否则会读到未定义内存

Longest Common Prefix

标签:

原文地址:http://www.cnblogs.com/dylqt/p/4922357.html

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