leetcode-14-最长公共前缀(简单)
2021/7/17 23:38:22
本文主要是介绍leetcode-14-最长公共前缀(简单),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
14 最长公共前缀(简单)
编写一个函数来查找字符串数组中的最长公共前缀。
如果不存在公共前缀,返回空字符串 ""
。
示例 1:
输入:strs = ["flower","flow","flight"] 输出:"fl"
示例 2:
输入:strs = ["dog","racecar","car"] 输出:"" 解释:输入不存在公共前缀。
- 当输入为空时,不存在
strs[0]
,因此,输入为空时需单独讨论- 最长公共前缀长度不大于strs中最短的字符串长度
(1)C++
class Solution { public: string longestCommonPrefix(vector<string>& strs){ int n = strs.size(); if(n==0) return ""; string s = ""; string temp = strs[0]; for(int i =1; i<n; i++){ if(temp.length()<strs[i].length()) temp = strs[i]; } for(int j=0;j<temp.size();j++){ char temp = strs[0][j]; bool flag = true; for(int i=1; i<n ;i++){ if(temp != strs[i][j]) flag = false; } if(flag) s+=temp; else break; } return s; } };
(2)C++(C++中无数组字符串的边界检测)
class Solution { public: string longestCommonPrefix(vector<string>& strs) { if(strs.size() == 0) return ""; string s = strs[0]; for(int i = 1; i < strs.size(); i++) { for(int j = 0; j < s.length(); j++) { if(s[j] != strs[i][j]) { s = s.substr(0, j); break; } } } return s; } };
(3)python
class Solution: def longestCommonPrefix(self, strs: List[str]) -> str: if(len(strs)==0): return "" res = strs[0] for each in strs: if len(res)>len(each): res = each for i in range(len(strs)): for j in range(len(res)): if res[j]!= strs[i][j]: res = res[:j] break return res
这篇关于leetcode-14-最长公共前缀(简单)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-22怎么通过控制台去看我的页面渲染的内容在哪个文件中呢-icode9专业技术文章分享
- 2024-12-22el-tabs 组件只被引用了一次,但有时会渲染两次是什么原因?-icode9专业技术文章分享
- 2024-12-22wordpress有哪些好的安全插件?-icode9专业技术文章分享
- 2024-12-22wordpress如何查看系统有哪些cron任务?-icode9专业技术文章分享
- 2024-12-21Svg Sprite Icon教程:轻松入门与应用指南
- 2024-12-20Excel数据导出实战:新手必学的简单教程
- 2024-12-20RBAC的权限实战:新手入门教程
- 2024-12-20Svg Sprite Icon实战:从入门到上手的全面指南
- 2024-12-20LCD1602显示模块详解
- 2024-12-20利用Gemini构建处理各种PDF文档的Document AI管道