19 lines
306 B
C
19 lines
306 B
C
|
#ifndef WEIGHTED_SET_H
|
||
|
#define WEIGHTED_SET_H
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
namespace Math {
|
||
|
|
||
|
class WeightedSet {
|
||
|
public:
|
||
|
WeightedSet(unsigned int seed);
|
||
|
void add(unsigned int w, unsigned int e);
|
||
|
unsigned int getRandom();
|
||
|
private:
|
||
|
std::vector<unsigned int> elements;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|