LeetCode Simple_14 最长公共前缀

问题描述

编写一个函数来查找字符串数组中的最长公共前缀。
如果不存在公共前缀,返回空字符串 ""。

示例

输入: ["flower","flow","flight"]
输出: "fl"
输入: ["dog","racecar","car"]
输出: ""
解释: 输入不存在公共前缀。

思路

先获得最短字符串长度,依次比较,返回最长公共前缀。

class Solution {
    public String longestCommonPrefix(String[] strs) {
        int len = 0, index = 0, flag = 0;
        String minStr = "", commonPrefix = "";
        if(strs.length == 0){
            return "";
        }
        len = strs[0].length();
        minStr = strs[0];
        for(int i=1; i

你可能感兴趣的:(LeetCode Simple_14 最长公共前缀)