剑指 Offer II 005. 单词长度的最大乘积
作者:互联网
剑指 Offer II 005. 单词长度的最大乘积 - 力扣(LeetCode) (leetcode-cn.com)
贼邪门,res=INT32_MIN竟然不行。。。。。。。。。。
class Solution {
public:
int maxProduct(vector<string>& words) {
int res=0;
bool flag=false;
for(int i=0;i<words.size();i++){
for(int j=i+1;j<words.size();j++){
flag=false;
for(char c : words[i]){
if(words[j].find(c)!=string::npos){
flag=true;
break;
}
}
if(!flag&&(words[i].length()*words[j].length()>res) )res=words[i].length()*words[j].length();
// cout<<res<<endl;
}
}
//cout<<res<<endl;
return res;
}
};
标签:005,Offer,int,res,II,words 来源: https://blog.csdn.net/weixin_47791283/article/details/122481806