Leetcode14
Posted wuyunrui08
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode14相关的知识,希望对你有一定的参考价值。
Leetcode 14
要求,编写一个函数来查找字符串组中的最长公共前缀
使用了Java语言编写,主要是利用函数indexOf和substring,从而进行比较和剪切。
public String longestCommonPrefix(String[] strs) {
if (strs == null || strs.length < 1)
return "";
String a=strs[0];
for(int i=1;i<strs.length;i++){
while(strs[i].indexOf(a)!=0){//进行比较
a=a.substring(0,a.length()-1);//裁剪字符串
if(a.isEmpty()){//如果裁剪的字符串是空串
return "";
}
}
}
return a;
}
以上是关于Leetcode14的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段14——Vue的axios网络请求封装
LeetCode(剑指 Offer)- 14- I. 剪绳子
LeetCode(剑指 Offer)- 14- I. 剪绳子
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段