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

19.1.26 [LeetCode14] Longest Common Prefix

时间:2019-01-26 11:08:27      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:opened   event   lower   for   分享图片   tor   技术分享   flow   output   

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.
技术分享图片
 1 class Solution {
 2 public:
 3     string longestCommonPrefix(vector<string>& strs) {
 4         if (strs.size() == 0)return "";
 5         int ans = 0, l = strs[0].length();
 6         for (int i =0; i < l; i++) {
 7             char c = strs[0][i];
 8             for (int j = 1; j < strs.size(); j++)
 9                 if (strs[j][i] != c)
10                     return strs[0].substr(0,ans);
11             ans++;
12         }
13         return strs[0].substr(0, ans);
14     }
15 };
View Code

唯一需要注意的地方是数组可能为空

19.1.26 [LeetCode14] Longest Common Prefix

标签:opened   event   lower   for   分享图片   tor   技术分享   flow   output   

原文地址:https://www.cnblogs.com/yalphait/p/10322615.html

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