zoukankan      html  css  js  c++  java
  • [leetcode] Longest Common Prefix @ Python

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

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

    Hint:   strs=['abc','ab','a']

    strs=[

    'abc',

    'ab',

    'a',

    ]

    We can think of strs as a column length varied matrix

    class Solution:
        # @return a string
        def longestCommonPrefix(self, strs):
            #横向扫描,每个字符串与第0 个字符串,从左到右比较,直到遇到一个不匹配,
            #然后继续下一个字符串
            #时间复杂度O(n1+n2+...)
            if len(strs) == 0: return ""
            minL = min([len(word) for word in strs])
            for j in range(minL):
                for i in range(1, len(strs)):
                    if strs[i][j] != strs[0][j]:
                        return strs[0][:j]
            return strs[0][:minL]
  • 相关阅读:
    文件的增删改查
    集合的使用
    字典的使用
    字符串常用操作
    简单购物车程序练习题
    列表
    数据运算数据类型与
    模块初识
    数据库时间设置
    ubuntu 修改时区
  • 原文地址:https://www.cnblogs.com/asrman/p/4023257.html
Copyright © 2011-2022 走看看