14. 最长公共前缀
简单
相关标签
相关企业
编写一个函数来查找字符串数组中的最长公共前缀。
如果不存在公共前缀,返回空字符串 ""。
示例 1:
输入:strs = ["flower","flow","flight"]
输出:"fl"
示例 2:
输入:strs = ["dog","racecar","car"]
输出:""
解释:输入不存在公共前缀。
class Solution {
public String longestCommonPrefix(String[] strs) {
if (strs == null || strs.length == 0) {
return "";
}
String prefix = strs[0];
int count = strs.length;
for (int i = 1; i < count; i++) {
prefix = longestCommonPrefix(prefix, strs[i]);
if (prefix.length() == 0) {
break;
}
}
return prefix;
}
public String longestCommonPrefix(String str1, String str2) {
int length = Math.min(str1.length(), str2.length());
int index = 0;
while (index < length && str1.charAt(index) == str2.charAt(index)) {
index++;
}
return str1.substring(0, index);
}
}
作者:力扣官方题解
链接:https://leetcode.cn/problems/longest-common-prefix/solutions/288575/zui-chang-gong-gong-qian-zhui-by-leetcode-solution/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
这个地板不太烫
- 粉丝: 113
- 资源: 212
最新资源
- delphi 12 控件之Abakus VCL v11.00 Build 5 for Delphi 5-12 Athens +
- Delphi 12 控件之RADStudio-12-2-29-0-53982-0329-KeyPatch.7z
- Vivado配置Sublime+Sublime实现Verilog语法实时检查插件sublime-verilog-master.z
- delphi 12 控件之CryptoDemo.7z
- openssl 1.0.1e 源码包
- Delphi 12 控件之Embarcadero.Delphi.12.2.Activator.v18.3.7z
- Delphi 12 控件之文件加密器含C#源码.zip
- Vivado配置Sublime+Sublime实现VHDL语法实时检查插件sublime-vhdl-master.zip
- Delphi 12 控件之【已支持D12.2.5】TMS WEB Core vv2.6.1.0 (2024.10.26)更新说明
- springboot图书个性化推荐系统的设计与实现
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈