首页 > 其他 > 详细

leetcode 14. 最长公共前缀

时间:2020-05-24 23:09:52      阅读:79      评论:0      收藏:0      [点我收藏+]

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

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

示例 1:

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

示例 2:

输入: ["dog","racecar","car"]
输出: ""
解释: 输入不存在公共前缀。

c语言实现:

char * longestCommonPrefix(char ** strs, int strsSize){
    if(strsSize==0){
        return "";
    }
    for(int count1=0;count1<strlen(strs[0]);count1++)
    {
        for(int count2=0;count2<strsSize;count2++)
        {
            if(strs[0][count1]!=strs[count2][count1]){
                strs[0][count1]=‘\0‘;
            }
        }
    }
    return strs[0];
}

  

leetcode 14. 最长公共前缀

原文:https://www.cnblogs.com/longlyseul/p/12953216.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!