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

leetcode 14. Longest Common Prefix

时间:2019-01-26 22:04:03      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:ring   code   flight   efi   index   class   solution   substr   return   

Write a function to find the longest common prefix string amongst an array of strings.

If there is no common prefix, return an empty string "".

Example 1:

Input: ["flower","flow","flight"]
Output: "fl"

Example 2:

Input: ["dog","racecar","car"]
Output: ""
Explanation: There is no common prefix among the input strings.

Note:

All given inputs are in lowercase letters a-z.

 

唉。。其实是不难的一道题,但是一开始没反应过来prefix是前缀的意思,卡了好久。

学到一个新用法 indexOf 用来检索字符串

class Solution {
    public String longestCommonPrefix(String[] strs) {
        if(strs.length == 0) return "";
        String s1 = strs[0];
        for(int i=0; i< strs.length; i++) {
            while(strs[i].indexOf(s1) != 0) {
                s1 = s1.substring(0,s1.length()-1);
            }
        }
        return s1;
    }
}

 

leetcode 14. Longest Common Prefix

标签:ring   code   flight   efi   index   class   solution   substr   return   

原文地址:https://www.cnblogs.com/jamieliu/p/10325014.html

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