码迷,mamicode.com
首页 > 编程语言 > 详细

leetcode longest common prefix(easy) /java

时间:2017-05-11 22:24:47      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:.com   prefix   lag   comm   技术分享   短字符串   input   提高效率   int   

题:

技术分享

遍历比较。

一本正经地说一下思路。

最长前缀。

一旦找到一个不匹配,就无法做成最长前缀。

所有我们的目的就是去找这个不匹配。

注意一下字符串为空的情况,每次都会栽在这里。

为了提高效率,找出最短字符串,因为最长前缀的长度不可能超过最短字符串的长度。

import java.io.*;
import java.util.*;

public class Solution
{
    public static String longestCommonPrefix(String[] strs)
    {
        String r=new String("");
        int len=strs.length;
        if(len==0)
            return r;
        int i,j;
        String temp=strs[0];
        int limit=temp.length();
        int index=0;
        for(i=1;i<len;i++)
        {
            temp=strs[i];
            if(temp.length()<limit)
            {
                limit=temp.length();
                index=i;
            }

        }
        if(limit==0)
            return r;
        char c,d;
        boolean flag=true;

        for(i=0;i<limit;i++)
        {
            c=strs[index].charAt(i);
            for(j=0;j<len;j++)
            {
                d=strs[j].charAt(i);
                if(c!=d)
                    flag=false;


            }
            if(flag==false)
                break;
            else
                    r=r+String.valueOf(c);
        }
        return r;
    }


    public static void main(String[] args)
    {
        Scanner input=new Scanner(System.in);
        String s=new String("hz");
        String[] strs={"ca","a"};
        s=longestCommonPrefix(strs);
        System.out.println(s);
    }
}

哎,心累。没有用例。

leetcode longest common prefix(easy) /java

标签:.com   prefix   lag   comm   技术分享   短字符串   input   提高效率   int   

原文地址:http://www.cnblogs.com/zhenzhenhuang/p/6842690.html

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