19 lines
306 B
C++
Executable File
19 lines
306 B
C++
Executable File
#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
|