标签:dex ref 四种 tin solution 查找 star int start 方法
Write a function to find the longest common prefix string amongst an array of strings.
If there is no common prefix, return an empty string "".
Example 1:
Input: ["flower","flow","flight"]
Output: "fl"
Example 2:
Input: ["dog","racecar","car"]
Output: ""
Explanation: There is no common prefix among the input strings.
Note:
All given inputs are in lowercase letters a-z.
class Solution {
public String longestCommonPrefix(String[] strs) {
if(strs == null || strs.length <= 0) return "";
// 公共子串不可能比第一个元素还长
String pre = strs[0];
//遍历所有的字符串
for(int i = 0; i < strs.length; i++) {
//对于每一个string,起点都是之前可以接受的,如果你接受不了,就往小减一个
while(strs[i].indexOf(pre) != 0) {
pre = pre.substring(0, pre.length()-1);
}
}
return pre;
}
}
/*
Java中字符串中子串的查找共有四种方法,如下:
1、int indexOf(String str) :返回第一次出现的指定子字符串在此字符串中的索引。
2、int indexOf(String str, int startIndex):从指定的索引处开始,返回第一次出现的指定子字符串在此字符串中的索引。
3、int lastIndexOf(String str) :返回在此字符串中最右边出现的指定子字符串的索引。
4、int lastIndexOf(String str, int startIndex) :从指定的索引处开始向后搜索,返回在此字符串中最后一次出现的指定子字符串的索引。
*/
标签:dex ref 四种 tin solution 查找 star int start 方法
原文地址:https://www.cnblogs.com/lawrenceSeattle/p/10255573.html