题目
编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 “”。
思路
纵向扫描时,从前往后遍历所有字符串的每一列,比较相同列上的字符是否相同,如果相同则继续对下一列进行比较,如果不相同则当前列不再属于公共前缀,当前列之前的部分为最长公共前缀。
代码
class Solution{
public:
string
longestCommonPrefix(vector
<string
>& strs
){
if(strs
.size()==0)
return "";
int length
=strs
[0].size();
int count
=strs
.size();
for(int i
=0;i
<length
;i
++){
char c
=strs
[0][i
];
for(int j
=0;j
<count
;j
++){
if(i
==strs
[j
].size() || strs
[j
][i
]!=c
)
return strs
[0].substr(0,i
);
}
}
return strs
[0];
}
};