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

#Leetcode# 14. Longest Common Prefix

时间:2018-11-02 23:36:38      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:code   targe   stc   get   href   .com   back   leetcode   har   

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

标签:code   targe   stc   get   href   .com   back   leetcode   har   

原文地址:https://www.cnblogs.com/zlrrrr/p/9898599.html

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