public class Solution { public String longestCommonPrefix(String[] strs) { if(strs.length==0) return ""; if(strs.length==1) return strs[0]; String commonPrefix=""; boolean end=true; char strChar[]=strs[0].toCharArray(); ok: for (int j = 0;j<strChar.length;j++){ for(int i=1;i<strs.length;i++){ char tempChar[]=strs[i].toCharArray(); int tempChar_length=tempChar.length; if(j<tempChar_length){ if(tempChar[j]==strChar[j]){ } else{ break ok; } } else{ break ok; } } commonPrefix+=strChar[j]; } return commonPrefix; } }
/********************************
* 本文来自博客 “李博Garvin“
* 转载请标明出处:http://blog.csdn.net/buptgshengod
******************************************/
【LeetCode从零单排】No14.LongestCommonPrefix
原文:http://blog.csdn.net/buptgshengod/article/details/43638093