网站首页 > 技术文章 正文
1、编程试题:
编写一个函数来查找字符串数组中的最长公共前缀。
如果不存在公共前缀,返回空字符串 ""。
示例 1:
输入:strs = ["flower","flow","flight"]
输出:"fl"
示例 2:
输入:strs = ["dog","racecar","car"]
输出:""
解释:输入不存在公共前缀。
2、代码实现:
可编辑代码如下:
#!/usr/bin/python3.9
# -*- coding: utf-8 -*-
#
# Copyright (C) 2024 , Inc. All Rights Reserved
#
# @Time : 2024/3/3 16:53
# @Author : fangel
# @FileName : [leetcode] 14. 最长公共前缀.py
# @Software : PyCharm
class Solution:
def longestCommonPrefix(self, strs: list[str]) -> str:
# 步骤1:如果strs为单个元素,直接返回
if len(strs) == 1 or len(strs) == 0:
return "".join(strs)
# 步骤2:先求出strs里最短的元素长度
lenList = []
for str in strs:
lenList.append(len(str))
minLen = min(lenList)
# 步骤3:进行循环判断求公共子串
resList = []
for i in range(0,minLen):
j = 0
while j < len(strs)-1:
a = strs[j][i]
# 不相等的话直接就返回已有的resList列表了
if strs[j+1][i] != a:
return "".join(resList)
else:
j += 1
resList.append(a)
return "".join(resList)
# 获取输入, 类型为字符串
input = list(map(str,input().split(",")))
# 调用函数
print(Solution().longestCommonPrefix(input))
3、代码分析:
执行用时分布52ms,击败9.39%使用 Python3 的用户
消耗内存分布16.44MB,击败47.13%使用 Python3 的用户
本例先判断strs的特殊场景,然后求出strs里最短的元素长度,再用for循环求公共字符串即可
4、运行结果:
输入:gbhu,ghui,g123h,g789,g78ui890
输出:g
- 上一篇: 从 0 到 1:构建强大且易用的规则引擎
- 下一篇: Python字符串方法之-字符串填充
猜你喜欢
- 2024-11-20 Python基础编程——算术运算
- 2024-11-20 Python字符串方法之-字符串填充
- 2024-11-20 从 0 到 1:构建强大且易用的规则引擎
- 2024-11-20 分享3个干货满满的Python实战项目,点赞收藏
- 2024-11-20 python笔记8:静静一起来学习-字符串相关方法
- 2024-11-20 零基础Python完全自学教程14:Python中的序列知识详解
- 2024-11-20 你需要了解的最重要的Python概念
- 2024-11-20 Python整数缓存机制
- 2024-11-20 老鸟进阶必备技能,看懂显示器参数
- 2024-11-20 Python案例:使用for…in循环完成内容长度的计算
- 最近发表
- 标签列表
-
- cmd/c (57)
- c++中::是什么意思 (57)
- sqlset (59)
- ps可以打开pdf格式吗 (58)
- phprequire_once (61)
- localstorage.removeitem (74)
- routermode (59)
- vector线程安全吗 (70)
- & (66)
- java (73)
- org.redisson (64)
- log.warn (60)
- cannotinstantiatethetype (62)
- js数组插入 (83)
- resttemplateokhttp (59)
- gormwherein (64)
- linux删除一个文件夹 (65)
- mac安装java (72)
- reader.onload (61)
- outofmemoryerror是什么意思 (64)
- flask文件上传 (63)
- eacces (67)
- 查看mysql是否启动 (70)
- java是值传递还是引用传递 (58)
- 无效的列索引 (74)