-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrandom.cpp
65 lines (48 loc) · 1.31 KB
/
random.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include "faasm/random.h"
#include <algorithm>
namespace faasm {
static std::random_device rd;
static std::mt19937 rng(rd());
int randomInteger(int iStart, int iEnd)
{
std::uniform_int_distribution<int> uni(iStart, iEnd);
int random_integer = uni(rng);
return random_integer;
}
float randomFloat()
{
std::random_device rd;
std::mt19937 rng(rd());
std::uniform_real_distribution<float> uni(0, 1);
float f = uni(rng);
return f;
}
void shuffleArray(int* arrayIn, size_t arrayLen)
{
std::shuffle(arrayIn, arrayIn + arrayLen, rng);
}
int* randomIntRange(int rangeLen)
{
int* range = new int[rangeLen];
for (int i = 0; i < rangeLen; i++) {
range[i] = i;
}
shuffleArray(range, rangeLen);
return range;
}
std::string randomString(int len)
{
char result[len];
static const char alphanum[] = "123456789"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz";
// Range cannot include last element of alphanum array as this is a null
// terminator
std::uniform_int_distribution<int> uni(0, sizeof(alphanum) - 2);
for (int i = 0; i < len; ++i) {
int r = uni(rng);
result[i] = alphanum[r];
}
return std::string(result, result + len);
}
} // namespace faasm