本文整理汇总了C++中Table::addToTable方法的典型用法代码示例。如果您正苦于以下问题:C++ Table::addToTable方法的具体用法?C++ Table::addToTable怎么用?C++ Table::addToTable使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Table
的用法示例。
在下文中一共展示了Table::addToTable方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: nextStep
void QuestionTable::nextStep()
{
Node * q = questions.headValue();
while(true)
{
int i = newQuestionValue(q -> a);
int j = questions.getN0();
if (i == j)
break;
questions.addToTable(q, i);
q = questions.headValue();
}
string s = fileName(q -> a, false);
ifstream input(s.c_str());
vector<int> pos;
vector<int> neg;
int m;
int n;
input >> m >> n;
pos.resize(m);
neg.resize(n);
for (int i = 0; i < m; ++i)
{
input >> pos[i];
}
for (int i = 0; i < n; ++i)
{
input >> neg[i];
}
string str;
getline(input, str);
getline(input, str);
input.close();
int ans = userAnswer(str);
Table* t = new Table(MAX_WRONG_ANS);
if (ans == 1)
{
positive.addToQueue(q -> a);
for (int i = 0; i < n; ++i)
{
int j = persons.search(neg[i]);
if (j != -1)
{
Node* tmp = persons.current(j);
if (j + 1 < MAX_WRONG_ANS)
{
t->addToTable(tmp, j + 1);
}
else
{
delete tmp;
}
}
}
}
else if (ans == -1)
{
negative.addToQueue(q -> a);
for (int i = 0; i < m; ++i)
{
int j = persons.search(pos[i]);
if (j != -1)
{
Node* tmp = persons.current(j);
if (j + 1 < MAX_WRONG_ANS)
{
t->addToTable(tmp, j + 1);
}
else
{
delete tmp;
}
}
}
}
persons.addTable(t);
delete t;
persons.setCurrentToHead();
}