取出 s t r s strs strs 的第一个字符串 s t r s [ 0 ] strs[0] strs[0] , 遍历 s t r s [ 0 ] strs[0] strs[0] , 依次比较所有串的当前位置的字符,是否和 s t r s [ 0 ] strs[0] strs[0] 的当前字符相同。
class Solution {
public:
string longestCommonPrefix(vector<string>& strs) {
int n = strs[0].size();
string ans;
if(strs.empty()) return ans;
int i = 0;
while(i<n){
for(auto &x:strs){
if(x.size()<=i || x[i]!=strs[0][i]) return ans;
}
ans += strs[0][i];
i++;
}
return ans;
}
};
时间复杂度 O ( n × ∑ i = 0 n − 1 m i ) O(n\times \sum_{i=0}^{n-1} m_i) O(n×∑i=0n−1mi) , n n n 是 s t r s strs strs 的长度, m i m_i mi 是 s t r s [ i ] strs[i] strs[i] 的长度。遍历所有串的所有字符,时间复杂度 O ( n × ∑ i = 0 n − 1 m i ) O(n\times \sum_{i=0}^{n-1} m_i) O(n×∑i=0n−1mi)。
空间复杂度 O ( 1 ) O(1) O(1) , 除答案所使用的空间外,没有使用额外的线性空间 。
理解思路很重要!
欢迎读者在评论区留言,作为日更博主,看到就会回复的。