#Leetcode# 14. Longest Common Prefix

Posted 丧心病狂工科女

tags:

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

https://leetcode.com/problems/longest-common-prefix/description/

 

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

If there is no common prefix, return an empty string "".

Example 1:

Input: ["flower","flow","flight"]
Output: "fl"

Example 2:

Input: ["dog","racecar","car"]
Output: ""
Explanation: There is no common prefix among the input strings.

代码:

class Solution {
public:
    string longestCommonPrefix(vector<string>& strs) {
        int Size = strs.size();
        if(Size == 0) return "";
        string ans = "";
        for(int i = 0; i < strs[0].length(); i ++) {
            char c = strs[0][i];
            for(int j = 1; j < Size; j ++) {
                if(i >= strs[j].length() || strs[j][i] != c)
                    return ans;
            }
            ans.push_back(c);
        }
        return ans;
    }
};

  

以上是关于#Leetcode# 14. Longest Common Prefix的主要内容,如果未能解决你的问题,请参考以下文章

leetcode14. longest common prefix

Leetcode 14. Longest Common Prefix

Leetcode 14 Longest Common Prefix

Leetcode14. Longest Common Prefix

LeetCode 14: Longest Common Prefix

leetcode 14. Longest Common Prefix