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

14.最长公共前缀

时间:2020-07-28 22:25:57      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:str   单词   common   pre   数组   turn   lower   cto   amp   

编写一个函数来查找字符串数组中的最长公共前缀。

如果不存在公共前缀,返回空字符串 ""。

示例:

输入: ["flower","flow","flight"]
输出: "fl"

思路

将单词上下排好,则相当于一个各行长度可能不同的二维数组,采用纵向遍历。外围循环为横向遍历,遍历次数由最短单词长度决定。

    string longestCommonPrefix(vector<string>& strs) {
        string res;
        if(strs.size()==0) return res;
        for(int j=0;j<strs[0].size();++j){
            for(int i=1;i<strs.size();++i){
                if(j>strs[i].size()-1||strs[i][j]!=strs[0][j])
                    return res;
            }
            res+=strs[0][j];
        }
        return res;
    }

14.最长公共前缀

标签:str   单词   common   pre   数组   turn   lower   cto   amp   

原文地址:https://www.cnblogs.com/Frank-Hong/p/13393335.html

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