码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode]14 Longest Common Prefix

时间:2015-01-02 16:13:25      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:leetcode

https://oj.leetcode.com/problems/longest-common-prefix/

http://fisherlei.blogspot.com/2012/12/leetcode-longest-common-prefix.html

public class Solution {
    public String longestCommonPrefix(String[] strs)
    {
        // Validations
        if (strs == null || strs.length == 0)
            return "";
            
        if (strs.length == 1)
            return strs[0];

        // Use strs[0] as initial common string.
        String common = strs[0];
    
        // Testify all others
        for (int i = 1 ; i < strs.length ; i ++)
        {
            while (!strs[i].startsWith(common))
            {
                common = common.substring(0, common.length() - 1);
                if (common.isEmpty())
                    return "";
            }
        }
        return common;
    }
}


[LeetCode]14 Longest Common Prefix

标签:leetcode

原文地址:http://7371901.blog.51cto.com/7361901/1598413

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!