该代码试图确定两个字符串是否具有相同的模式。
#include <iostream>
#include <vector>
#include <string>
#include <map>
#include <sstream>
bool findMatch(char * s1, char * s2){
std::map<char, std::string> words;
std::istringstream iss(s1);
std::string word;
//for (std::string::size_t i = 0; i < s2.size(); ++i) //line 1
//for (int i = 0; i < s2.size(); ++i) //line 2
{
if (!(iss >> word))
return false;
std::string& mapping = words[s2[i]];
if (mapping == "")
mapping = word;
else if (mapping != word)
return false;
}
return !(iss >> word);
}
int main(int argc, char * argv[]){
bool b = findMatch("red blue blue red red yellow", "abbaac");
std::cout << b << std::endl;
return 0;
}
问题: 我尝试了两次,第 1 行和第 2 行,但都没有成功
第 1 行,错误:类“...”没有成员“size_t”
第 2 行:错误:char * s2 表达式必须具有类类型
有任何想法吗?