您的位置:首页 > 编程语言 > Python开发

字符串数组最长公共前缀

2017-06-23 16:39 656 查看

字符串数组最长公共前缀

Longest Common Prefix

给出字符串数组,查找这个数组中所有字符串的最长公共前缀

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

example 1

input: ['asdqowi','asdb', 'asdmnc']
output: 'asd'


思路

i从0开始自增,判断每个字符串 i 位置的字符是否一致,不一致则 i 之前的串为最长公共字符串。

利用python zip函数的特点:

a = [1, 2, 3]
b = [4, 5, 6]
c = [7, 8, 9, 10]
zip(a, b, c) is =>
(1, 4, 7)

(2, 5, 8)

(3, 6, 9)
set((1, 1, 1)) = {'1'}
set((1, 1, 2)) = {'1', '2'}


zip(*strs)
返回可迭代的zip对象,只要判断
set(item)
长度大于0,则表明此元素非公共字符。

3. 下面给出两种算法的代码。

代码

class Solution(object):
def longestCommonPrefix(self, strs):
"""
:type strs: List[str]
:rtype: str
"""
prefix = ''
i = 0
while True:
try:
tmp = strs[0][i]
for item in strs:
if item[i] != tmp:
return prefix
except: #out of index range,表明遍历最短字符串完毕
return prefix
prefix += tmp
i += 1
return prefix

def longestCommonPrefix_use_zip(self, strs):
"""
:type strs: List[str]
:rtype: str
"""
prefix = ''
for _, item in enumerate(zip(*strs)):
if len(set(item)) > 1:
return prefix
else:
prefix += item[0]
return prefix


本题以及其它leetcode题目代码github地址: github地址
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python算法 leetcode
相关文章推荐