题目:Write a function to find the longest common prefix string amongst an array of strings. 很简单的一个描述,最长公共前缀,首先想到的是用递归,既然是找公共前缀,那肯定要两个进行比较,所以把第一个和除了第一个之外的字符串数组看作两个进行比较,再对后面的进行递归就好了,上代码. public static String longestCommonPrefix(String[] strs) { if (strs.…