leetcode14-最长公共前缀
Posted leagueandlegends
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode14-最长公共前缀相关的知识,希望对你有一定的参考价值。
编写一个函数来查找字符串数组中的最长公共前缀。
如果不存在公共前缀,返回空字符串 ""
。
示例 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]=‘ ‘; } } } return strs[0]; }
以上是关于leetcode14-最长公共前缀的主要内容,如果未能解决你的问题,请参考以下文章