LeetCode
程序员文章站
2022-03-05 10:53:05
...
Write a function to find the longest common prefix string amongst an array of strings.
这道题很简单,其实最重要的是边界条件,一定要思维缜密,写代码要尽力达到从上到下一次写完而不会出现边界问题的地步!
public class Solution {
public String longestCommonPrefix(String[] strs){
if(strs.length==0)
return "";
int index=0;
while(true){
if(strs[0].equals(""))
return "";
if(index>=strs[0].length())
break;
char c=strs[0].charAt(index);
int i=0;
for(i=0;i<strs.length;i++){
if(index>=strs[i].length())
break;
if(strs[i].charAt(index)!=c)
break;
}
if(i<strs.length)
break;
index++;
}
return strs[0].substring(0,index);
}
}
推荐阅读
-
力扣(leetcode)1431. Kids With the Greatest Number of Candies
-
LeetCode1509.三次操作后最大值与最小值的最小差
-
LeetCode力扣有效的完全平方数
-
Leetcode 135. 分发糖果 贪心模拟题目
-
[leetcode](4.21)4. 有效子数组的数目
-
【leetcode】127. Word Ladder
-
LeetCode Palindrome Partitioning
-
POJ3126 Prime Path(BFS) 类似于Leetcode 单词接龙
-
LeetCode#773滑动谜题
-
LeetCode 42: Trapping Rain Water题解(python)