1. 程式人生 > >【leetcode陣列和字串】最長公共字首

【leetcode陣列和字串】最長公共字首

編寫一個函式來查詢字串陣列中的最長公共字首。
如果不存在公共字首,返回空字串 “”。

示例 1:
輸入: [“flower”,“flow”,“flight”]
輸出: “fl”

示例 2:
輸入: [“dog”,“racecar”,“car”]
輸出: “”

解釋: 輸入不存在公共字首。

說明:
所有輸入只包含小寫字母 a-z 。

C++解法

class Solution {
public:
    string longestCommonPrefix(vector<string>& strs) {
        string result=
""; if(strs.empty()) return result; int i=0; while(i<strs[0].size()) { char temp=strs[0][i]; for(int j=1;j<strs.size();j++) { if(strs[j][i]==temp) continue; else return
result; } result+=temp; i++; } return result; } };