Add Grouper: Maps a key to a vectors
このコミットが含まれているのは:
コミット
e217218a3f
0
grouper.cpp
ノーマルファイル
0
grouper.cpp
ノーマルファイル
26
grouper.h
ノーマルファイル
26
grouper.h
ノーマルファイル
@ -0,0 +1,26 @@
|
|||||||
|
#include "utils.h"
|
||||||
|
|
||||||
|
template<class G, class V, class C>
|
||||||
|
class Grouper
|
||||||
|
{
|
||||||
|
std::map<G, std::vector<const V*>, C> results;
|
||||||
|
public:
|
||||||
|
|
||||||
|
Grouper(C c)
|
||||||
|
{
|
||||||
|
results = std::map<G, std::vector<const V*>, C>(c);
|
||||||
|
}
|
||||||
|
|
||||||
|
void group(const std::function<G(const V&)> &map, const std::vector<V> &values)
|
||||||
|
{
|
||||||
|
for(const V &v : values)
|
||||||
|
{
|
||||||
|
results[map(v)].push_back(&v);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
std::map<G, std::vector<const V*>, C> &getResults()
|
||||||
|
{
|
||||||
|
return this->results;
|
||||||
|
}
|
||||||
|
};
|
読み込み中…
x
新しいイシューから参照
ユーザーをブロックする