本文整理汇总了C++中Corpus::pegarQtdConjExemplos方法的典型用法代码示例。如果您正苦于以下问题:C++ Corpus::pegarQtdConjExemplos方法的具体用法?C++ Corpus::pegarQtdConjExemplos怎么用?C++ Corpus::pegarQtdConjExemplos使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Corpus
的用法示例。
在下文中一共展示了Corpus::pegarQtdConjExemplos方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: processarCorpus
bool ProcessadorAttDisc::processarCorpus(Corpus &objCorpus)
{
int totlinhas, qtdConjExemplos,c;
int idCol, linha;
int *indices;
indices = new int[numatributos];
for(int i=0; i<numatributos; i++)
{
indices[i] = objCorpus.pegarPosAtributo(atributo[i]);
}
criarAtributos(objCorpus);
idCol = objCorpus.pegarPosAtributo("New"+atributo[0]);
qtdConjExemplos = objCorpus.pegarQtdConjExemplos();
for (c=0; c<qtdConjExemplos; c++){
totlinhas = objCorpus.pegarQtdExemplos(c);
for (linha=0; linha < totlinhas; linha++){
for( int i=0; i<numatributos; i++)
{
int vatual= objCorpus.pegarValor(c,linha,indices[i]);
string valor_atual = objCorpus.pegarSimbolo(vatual);
int logatual=0;
if(valor_atual == "VERDADEIRO" )
logatual = 1;
std::stringstream out2;
out2 << setprecision(0) << setiosflags(ios::fixed);
out2 << logatual;
objCorpus.ajustarValor(c, linha, idCol+i, objCorpus.pegarIndice(out2.str()));
}
}
}
return true;
}