当前位置: 首页>>代码示例>>C++>>正文


C++ Permutation::addElement方法代码示例

本文整理汇总了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);
	}
开发者ID:raphaelcampos,项目名称:rank-aggregation-problem,代码行数:28,代码来源:kutils.hpp

示例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));
		}
	}
开发者ID:raphaelcampos,项目名称:rank-aggregation-problem,代码行数:7,代码来源:kutils.hpp

示例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));
			}
		}
	}
开发者ID:raphaelcampos,项目名称:rank-aggregation-problem,代码行数:10,代码来源:kutils.hpp


注:本文中的Permutation::addElement方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。