首页 > 其他 > 详细

leetcode 14. Longest Common Prefix

时间:2019-01-26 21:59:13      阅读:184      评论:0      收藏:0      [点我收藏+]

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!