leetcode 14

Posted 晴朗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 14相关的知识,希望对你有一定的参考价值。

求公共前缀,两两比较即可

string the_common_prefix(const string &str1,const string &str2)
{
    string str="";
    for(int i=0,j=0;i<str1.size()&&j<str2.size();i++,j++)
    {
    if(str1[i]==str2[j]) 
    str.push_back(str1[i]);
    else break;
    }
    return str;
}
class Solution {
public:
    string longestCommonPrefix(vector<string>& strs) {
        if(strs.size()==0)return "";
        string The_Str=strs[0];
        for(int i=1;i<strs.size();i++)
            The_Str=the_common_prefix(The_Str,strs[i]);
            return The_Str;
    }
};

 

以上是关于leetcode 14的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段14——Vue的axios网络请求封装

LeetCode(剑指 Offer)- 14- I. 剪绳子

LeetCode(剑指 Offer)- 14- I. 剪绳子

leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段

leetcode-14.最长公共前缀(图)

Leetcode.1024 视频拼接