leetcode 14.最长公共前缀

放肆的年华 提交于 2020-02-02 04:57:24

14.最长公共前缀

执行用时 :0 ms, 在所有 Java 提交中击败了100.00%的用户

LCS为这些字符串的最长公共前缀,那么

LCS(...LCS(LCS(LCS(S0,S1),S2)S3)...Sn)LCS(...LCS(LCS(LCS(S0,S1),S2)S3)...Sn)

随意取strs[0]为初始p,那么strs[]的最长前缀必是strs[0]或及其子串,从strs[1]开始遍历,找出pstrs[i]的最长公共前缀前缀并存到p中。

class Solution {
     public String longestCommonPrefix(String[] strs) {
        if(strs.length==0)
            return "";
        String p=strs[0];
        for (int i = 1; i <strs.length ; i++) {
            while(strs[i].indexOf(p)!=0)
            {
                p=p.substring(0,p.length()-1);
            }
        }
        return p;
        
    }
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!