leetcode14.最長公共字首
問題描述
編寫一個函式來查詢字串陣列中的最長公共字首。
如果不存在公共字首,返回空字串 “”。
示例 1:
輸入: [“flower”,“flow”,“flight”]
輸出: “fl”
示例 2:
輸入: [“dog”,“racecar”,“car”]
輸出: “”
解釋: 輸入不存在公共字首。
思路
遍歷單詞,依次比較就行了
AC程式碼
class Solution {
public:
string longestCommonPrefix(vector<string>& strs) {
string res;
if (strs.empty()) return res;
for (int i = 0;; i ++) {
if (i >= strs[0].size()) return res;
char c = strs[0][i];
for (auto &str: strs) {
if (i >= str.size() || str[i] != c)
return res;
}
res += c;
}
return res;
}
};
相關文章
- #LeetCode14. 最長公共字首 @FDDLCLeetCode
- 最長公共字首
- 14. 最長公共字首
- 14_最長公共字首
- 演算法:最長公共字首演算法
- LeeCode 14. 最長公共字首
- 每日leetcode——最長公共字首LeetCode
- LeetCode最長公共字首(Python)LeetCodePython
- 演算法之字串——最長公共字首演算法字串
- LeetCode-14. 最長公共字首LeetCode
- Longest Common Prefix字串最長公共字首問題字串
- leetcode爬坑史(一)-- [14] 最長公共字首LeetCode
- LeetCode每日一題:最長公共字首(No.14)LeetCode每日一題
- ABC353E字典樹處理最長公共字首
- 讓我們一起啃演算法----最長公共字首演算法
- LeetCode - 014 - 最長公共字首(longest-common-prefix)LeetCode
- 最長公共子序列
- LeetCode——python3最長公共字首——2020.11.24LeetCodePython
- 【完虐演算法】「字串-最長公共字首」5種方法腦洞大開演算法字串
- 最長公共子序列(JAVA)Java
- lCS(最長公共子串)
- 面試題:編寫一個函式來查詢字串陣列中的最長公共字首。 如果不存在公共字首,返回空字串 ""。(c++實現)面試題函式字串陣列C++
- java 實現 最長公共子序列Java
- 最長公共子序列求方案數
- 線性dp:最長公共子序列
- 線性dp:最長公共子串
- 動態規劃-最長公共子序列動態規劃
- 動態規劃——最長公共子序列動態規劃
- 演算法題:最長公共子序列演算法
- 兩個字串的最長公共子串字串
- [LeetCode] Longest Common Prefix 最長共同字首LeetCode
- 動態規劃(最長公共子序列LCS)動態規劃
- LCS 演算法:Javascript 最長公共子序列演算法JavaScript
- 最長公共子序列的程式碼實現
- 力扣1143. 最長公共子序列 動態規劃之最長公共子序列力扣動態規劃
- [演算法筆記]動態規劃之最長公共子串和最長公共子序列演算法筆記動態規劃
- 最長公共子序列,遞迴簡單程式碼遞迴
- 測試開發工程師的每日演算法-Leecode 演算法題目第 14. 最長公共字首工程師演算法