本文整理汇总了C++中Permutation::addElement方法的典型用法代码示例。如果您正苦于以下问题:C++ Permutation::addElement方法的具体用法?C++ Permutation::addElement怎么用?C++ Permutation::addElement使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Permutation
的用法示例。
在下文中一共展示了Permutation::addElement方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: make_pair
pair<std::vector<Permutation<element_type, rank_type>* >, std::map<string, int> > load_format_trec(string qresult){
std::string line;
std::map<string, int> map_queries;
std::vector<Permutation<element_type, rank_type>* > rankings;
ifstream infile;
infile.open(qresult.c_str());
while(infile.good() && std::getline( infile, line )){
std::vector<std::string> strs = split(line, ' ');
element_type elem = atoi(&(strs[2]).c_str()[0]);
rank_type pos = atoi(&(strs[3]).c_str()[0]);
std::map<string, int>::iterator it = map_queries.find(strs[0]);
if(it != map_queries.end()){
rankings[it->second]->addElement(elem, pos);
}else{
Permutation<element_type, rank_type>* p = new perm_imp_type();
p->addElement(elem, pos);
rankings.push_back(p);
map_queries[strs[0]] = map_queries.size() - 1;
}
}
infile.close();
return make_pair(rankings, map_queries);
}
示例2: union_perm
void union_perm(Permutation<element_type, rank_type> &sigma, Permutation<element_type, rank_type> &tau){
for (typename Permutation<element_type, rank_type>::iterator it = tau.begin(); it != tau.end(); ++it)
{
sigma.addElement(it->first, sigma(it->first));
}
}
示例3: union_all
void union_all(Permutation<element_type, rank_type> &sigma, vector<Permutation<element_type, rank_type> *>&perms){
//Permutation<element_type, rank_type> * perm = perms[0];
for (int i = 0; i < perms.size(); ++i)
{
for (typename Permutation<element_type, rank_type>::iterator it = perms[i]->begin(); it != perms[i]->end(); ++it)
{
sigma.addElement(it->first, sigma(it->first));
}
}
}