本文整理汇总了C++中Match::push_back方法的典型用法代码示例。如果您正苦于以下问题:C++ Match::push_back方法的具体用法?C++ Match::push_back怎么用?C++ Match::push_back使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Match
的用法示例。
在下文中一共展示了Match::push_back方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: check
MultipleMatch Board::check() {
//lDEBUG << "Checking board...";
int k;
MultipleMatch matches;
// First, we check each row (horizontal)
for(int y = 0; y < 8; ++y) {
for(int x = 0; x < 6; ++x) {
Match currentRow;
currentRow.push_back(coord(x,y));
for(k = x+1; k < 8; ++k) {
if(squares[x][y] == squares[k][y] &&
squares[x][y] != sqEmpty) {
currentRow.push_back(coord(k,y));
} else {
break;
}
}
if(currentRow . size() > 2) {
matches.push_back(currentRow);
}
x = k - 1;
}
}
for(int x = 0; x < 8; ++x) {
for(int y = 0; y < 6; ++y) {
Match currentColumn;
currentColumn.push_back(coord(x,y));
for(k = y + 1; k < 8; ++k) {
if(squares[x][y] == squares[x][k] &&
squares[x][y] != sqEmpty) {
currentColumn.push_back(coord(x,k));
} else {
break;
}
}
if(currentColumn.size() > 2) {
matches.push_back(currentColumn);
}
y = k - 1;
}
}
return matches;
}
示例2: search
bool Regex::search(const string &s, Match &m) const {
try {
if (!boost::regex_search(s, m.pri->m, pri->re, typeToMatchFlags(type)))
return false;
} catch (const boost::regex_error &e) {
THROW("Search error: " << e.what());
}
for (unsigned i = 0; i < m.pri->m.size(); i++)
m.push_back(string(m.pri->m[i].first, m.pri->m[i].second));
return true;
}