本文整理汇总了C++中Site::setAddress方法的典型用法代码示例。如果您正苦于以下问题:C++ Site::setAddress方法的具体用法?C++ Site::setAddress怎么用?C++ Site::setAddress使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Site
的用法示例。
在下文中一共展示了Site::setAddress方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Site
Site *searchByWebSite(Site *site, Token *listTokens){
bool match;
Site *newSite = new Site(site->getName(), site->getAddress());
newSite->setAddress(site->getAddress());
int numberMatches;
for(Token *tempToken = listTokens; tempToken != NULL; tempToken = tempToken->sig){
//
numberMatches = 0;
string strToken = tempToken->getStrToken();
string strTitle = site->getName();
string strBody = site->getBody();
//cout<<"TITLE"<<endl;
for(int n = 0; n < strTitle.length(); n++){
if(strTitle[n] == strToken[0]){
int tempN = n; match = true;
for(int m = 0; m < strToken.length(); m++){
//cout<< strTitle[tempN] << " == "<< strToken[m]<<endl;
if(tempN >= strTitle.length() || strTitle[tempN] != strToken[m]){
match = false;
break;
}
tempN = tempN + 1;
}
if(match){
numberMatches ++;
}
}
}
//cout<<"BODY:"<<strBody<<endl;
for(int n = 0; n < strBody.length(); n++){
if(strBody[n] == strToken[0]){
int tempN = n; match = true;
for(int m = 0; m < strToken.length(); m++){
//cout<< strBody[tempN] << " == "<< strToken[m]<<endl;
if(tempN >= strBody.length() || strBody[tempN] != strToken[m]){
match = false;
break;
}
tempN = tempN + 1;
}
if(match){
numberMatches ++;
//cout<<">> Match in: "<<strToken<<endl;
}
}
}
//
if(numberMatches > 0){
//cout<<">> Match in: "<<strToken<<endl;
Token *newToken = new Token(tempToken->getStrToken(), numberMatches);
newSite->addToken(newToken);
}
}
return newSite;
}