hpcpack-linux-agent/LinuxNodeMgr/UnionFindSet.h

18 строки
309 B
C
Исходник Постоянная ссылка Обычный вид История

2014-10-16 12:44:12 +04:00
#ifndef UNIONFINDSET_H
#define UNIONFINDSET_H
#include<map>
class UnionFindSet
{
public:
UnionFindSet();
virtual ~UnionFindSet();
void AddPair(int child, int parent);
int FindParent(int child);
private:
std::map<int,int> Parents;
};
#endif // UNIONFINDSET_H