-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFunctions.h
623 lines (520 loc) · 27.9 KB
/
Functions.h
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
namespace alg::func {
// -----------------------------------
// vvv ---------Functions--------- vvv
const long double EPS = 1e-7;
const long double FI = (sqrtl(5.0) - 1.0) / 2.0;
const long double PI = acosl(-1.0);
class AlgDomainError : public std::domain_error {
public:
AlgDomainError(const char* filename, uint32_t line, const std::string& message) noexcept :
domain_error("Domain error.\nFilename: " + std::string(filename) + "\nLine: " + std::to_string(line) + "\nDescription: " + message) {
}
};
class AlgInvalidArgument : public std::invalid_argument {
public:
AlgInvalidArgument(const char* filename, uint32_t line, const std::string& message) noexcept :
invalid_argument("Invalid argument error.\nFilename: " + std::string(filename) + "\nLine: " + std::to_string(line) + "\nDescription: " + message) {
}
};
class AlgOutOfRange : public std::out_of_range {
public:
AlgOutOfRange(const char* filename, uint32_t line, const std::string& message) noexcept :
out_of_range("Out of range error.\nFilename: " + std::string(filename) + "\nLine: " + std::to_string(line) + "\nDescription: " + message) {
}
};
class AlgRuntimeError : public std::runtime_error {
public:
AlgRuntimeError(const char* filename, uint32_t line, const std::string& message) noexcept :
runtime_error("Runtime error.\nFilename: " + std::string(filename) + "\nLine: " + std::to_string(line) + "\nDescription: " + message) {
}
};
template <typename T> // Operators required: <(T, T), ==(T, T)
int32_t sgn(const T& x, const T& zero = T(0)) {
if (x < zero) {
return -1;
}
if (x == zero) {
return 0;
}
return 1;
}
template <typename T1, typename T2> // T1, T2 - standard numeric types
bool equality(T1 left, T2 right, long double eps = EPS) noexcept {
return std::abs(left - right) <= eps;
}
template <typename T1, typename T2> // T1, T2 - standard numeric types
bool less_equality(T1 left, T2 right, long double eps = EPS) noexcept {
return left < right || equality(left, right, eps);
}
template <typename T> // Operators required: <<(std::stringstream, T)
std::string to_string(const T& value, std::streamsize precision = 6) {
std::stringstream str_stream;
str_stream.precision(precision);
str_stream << value;
return str_stream.str();
}
std::vector<std::string> split(const std::string& str, std::function<bool(char)> pred) {
std::vector<std::string> split_str(1);
for (char character : str) {
bool skip_character = pred(character);
if (split_str.back().size() > 0 && skip_character) {
split_str.push_back("");
}
else if (!skip_character) {
split_str.back().push_back(character);
}
}
if (split_str.back().empty()) {
split_str.pop_back();
}
return split_str;
}
std::vector<std::string> split(const std::string& str, char split_character) {
return split(str, [=](char character) { return character == split_character; });
}
std::string make_table(const std::vector<std::vector<std::string>>& description) {
size_t max_string_length = 0;
for (const std::vector<std::string>& str : description) {
max_string_length = std::max(max_string_length, str.size());
}
std::vector<size_t> max_cell_height(description.size(), 0);
std::vector<size_t> max_cell_width(max_string_length, 0);
std::vector<std::vector<std::vector<std::string>>> splited_description(description.size(), std::vector<std::vector<std::string>>(max_string_length));
for (size_t i = 0; i < description.size(); ++i) {
for (size_t j = 0; j < description[i].size(); ++j) {
splited_description[i][j] = split(description[i][j], '\n');
max_cell_height[i] = std::max(max_cell_height[i], splited_description[i][j].size());
for (const std::string& str : splited_description[i][j]) {
max_cell_width[j] = std::max(max_cell_width[j], str.size());
}
}
}
std::string table;
for (size_t i = 0; i < description.size(); ++i) {
for (size_t str_id = 0; str_id < max_cell_height[i]; ++str_id) {
for (size_t j = 0; j < max_string_length; ++j) {
size_t cur_length = 0;
if (str_id < splited_description[i][j].size()) {
cur_length = splited_description[i][j][str_id].size();
table += splited_description[i][j][str_id];
}
for (; cur_length < max_cell_width[j]; ++cur_length) {
table.push_back(' ');
}
table.push_back(' ');
}
table.push_back('\n');
}
}
return table;
}
template <typename T> // Operators required: <<(std::stringstream, T)
std::string make_table(const std::vector<std::vector<T>>& description, std::streamsize precision = 6) {
std::vector<std::vector<std::string>> description_strings(description.size());
for (size_t i = 0; i < description.size(); ++i) {
description_strings[i].resize(description[i].size());
for (size_t j = 0; j < description[i].size(); ++j) {
description_strings[i][j] = to_string(description[i][j], precision);
}
}
return make_table(description_strings);
}
template <typename T> // Operators required: <<(std::stringstream, T)
std::string make_table(const std::vector<T>& description, std::streamsize precision = 6) {
std::vector<std::vector<std::string>> description_strings(1, std::vector<std::string>(description.size()));
for (size_t i = 0; i < description.size(); ++i) {
description_strings[0][i] = to_string(description[i], precision);
}
return make_table(description_strings);
}
template <typename It> // Operators required: !=(It, It), ++(It), *(It)
std::string make_string(It container_begin, It container_end, std::streamsize precision = 6) {
std::vector<std::vector<std::string>> table_description(1);
for (; container_begin != container_end; ++container_begin) {
table_description[0].push_back(to_string(*container_begin, precision));
}
return make_table(table_description);
}
// Up and down string format: "lmr" (l - left symbol, m - middle symbols, r - right symbol)
std::string make_table_decorated(const std::vector<std::vector<std::string>>& description, bool named_columns = false, const std::string& vertical_sep = std::string(1, char(179)), const std::string& horizontal_sep = std::string(1, char(196)), char vertical_border = char(179), const std::string& up_border = std::string(1, char(218)) + std::string(1, char(196)) + std::string(1, char(191)), const std::string& down_border = std::string(1, char(192)) + std::string(1, char(196)) + std::string(1, char(217))) {
size_t max_string_length = 0;
for (const std::vector<std::string>& str : description) {
max_string_length = std::max(max_string_length, str.size());
}
std::vector<size_t> max_cell_height(description.size(), 0);
std::vector<size_t> max_cell_width(max_string_length, 0);
std::vector<std::vector<std::vector<std::string>>> splited_description(description.size(), std::vector<std::vector<std::string>>(max_string_length));
for (size_t i = 0; i < description.size(); ++i) {
for (size_t j = 0; j < description[i].size(); ++j) {
splited_description[i][j] = split(description[i][j], '\n');
max_cell_height[i] = std::max(max_cell_height[i], splited_description[i][j].size());
for (const std::string& str : splited_description[i][j]) {
max_cell_width[j] = std::max(max_cell_width[j], str.size());
}
}
}
std::string table;
if (!up_border.empty()) {
if (up_border.size() != 3) {
throw AlgInvalidArgument(__FILE__, __LINE__, "make_table_decorated, invalid up border description");
}
table += up_border[0];
table += up_border[1];
for (size_t i = 0; i < max_string_length; ++i) {
for (size_t j = 0; j < max_cell_width[i]; ++j) {
table += up_border[1];
}
if (up_border[1] == char(196) && vertical_sep == std::string(1, char(179)) && i + 1 < max_string_length) {
table += up_border[1];
table += char(194);
table += up_border[1];
}
else {
for (size_t j = 0; j < 2 + vertical_sep.size() && i + 1 < max_string_length; ++j) {
table += up_border[1];
}
}
}
table += up_border[1];
table += up_border[2];
table += '\n';
}
for (size_t i = 0; i < description.size(); ++i) {
for (size_t str_id = 0; str_id < max_cell_height[i]; ++str_id) {
table += std::string(1, vertical_border) + " ";
for (size_t j = 0; j < max_string_length; ++j) {
size_t cur_length = 0;
if (str_id < splited_description[i][j].size()) {
cur_length = splited_description[i][j][str_id].size();
table += splited_description[i][j][str_id];
}
for (; cur_length < max_cell_width[j]; ++cur_length) {
table += ' ';
}
if (j + 1 < max_string_length) {
table += " " + vertical_sep + " ";
}
}
table += " " + std::string(1, vertical_border);
table += '\n';
}
if (i == 0 && named_columns && i + 1 < description.size()) {
if (up_border.empty()) {
throw AlgInvalidArgument(__FILE__, __LINE__, "make_table_decorated, invalid up border description");
}
if (vertical_border == char(179) && up_border[1] == char(196)) {
table += char(195);
}
else {
table += vertical_border;
}
table += up_border[1];
for (size_t j = 0; j < max_string_length; ++j) {
for (size_t k = 0; k < max_cell_width[j]; ++k) {
table += up_border[1];
}
if (up_border[1] == char(196) && vertical_sep == std::string(1, char(179)) && j + 1 < max_string_length) {
table += up_border[1];
table += char(197);
table += up_border[1];
}
else {
for (size_t k = 0; k < 2 + vertical_sep.size() && j + 1 < max_string_length; ++k) {
table += up_border[1];
}
}
}
table += up_border[1];
if (vertical_border == char(179) && up_border[1] == char(196)) {
table += char(180);
}
else {
table += vertical_border;
}
table += '\n';
}
else if (!horizontal_sep.empty() && i + 1 < description.size()) {
if (horizontal_sep.size() != 1) {
throw AlgInvalidArgument(__FILE__, __LINE__, "make_table_decorated, invalid horizontal sep description");
}
if (vertical_border == char(179) && horizontal_sep == std::string(1, char(196))) {
table += char(195);
}
else {
table += vertical_border;
}
table += horizontal_sep;
for (size_t j = 0; j < max_string_length; ++j) {
for (size_t k = 0; k < max_cell_width[j]; ++k) {
table += horizontal_sep;
}
if (j + 1 < max_string_length) {
if (horizontal_sep == std::string(1, char(196)) && vertical_sep == std::string(1, char(179))) {
table += horizontal_sep;
table += char(197);
table += horizontal_sep;
}
else {
table += horizontal_sep + vertical_sep + horizontal_sep;
}
}
}
table += horizontal_sep;
if (vertical_border == char(179) && horizontal_sep == std::string(1, char(196))) {
table += char(180);
}
else {
table += vertical_border;
}
table += '\n';
}
}
if (!down_border.empty()) {
if (down_border.size() != 3) {
throw AlgInvalidArgument(__FILE__, __LINE__, "make_table_decorated, invalid down border description");
}
table += down_border[0];
table += down_border[1];
for (size_t i = 0; i < max_string_length; ++i) {
for (size_t j = 0; j < max_cell_width[i]; ++j) {
table += down_border[1];
}
if (down_border[1] == char(196) && vertical_sep == std::string(1, char(179)) && i + 1 < max_string_length) {
table += down_border[1];
table += char(193);
table += down_border[1];
}
else {
for (size_t j = 0; j < 2 + vertical_sep.size() && i + 1 < max_string_length; ++j) {
table += down_border[1];
}
}
}
table += down_border[1];
table += down_border[2];
table += '\n';
}
return table;
}
template <typename T> // Operators required: <<(std::stringstream, T); Up and down string format: "lmr" (l - left symbol, m - middle symbols, r - right symbol)
std::string make_table_decorated(const std::vector<std::vector<T>>& description, std::streamsize precision = 6, bool named_columns = false, const std::string& vertical_sep = std::string(1, char(179)), const std::string& horizontal_sep = std::string(1, char(196)), char vertical_border = char(179), const std::string& up_border = std::string(1, char(218)) + std::string(1, char(196)) + std::string(1, char(191)), const std::string& down_border = std::string(1, char(192)) + std::string(1, char(196)) + std::string(1, char(217))) {
std::vector<std::vector<std::string>> description_strings(description.size());
for (size_t i = 0; i < description.size(); ++i) {
description_strings[i].resize(description[i].size());
for (size_t j = 0; j < description[i].size(); ++j) {
description_strings[i][j] = to_string(description[i][j], precision);
}
}
return make_table_decorated(description_strings, named_columns, vertical_sep, horizontal_sep, vertical_border, up_border, down_border);
}
template <typename T> // Operators required: <<(std::stringstream, T); Up and down string format: "lmr" (l - left symbol, m - middle symbols, r - right symbol)
std::string make_table_decorated(const std::vector<T>& description, std::streamsize precision = 6, bool named_columns = false, const std::string& vertical_sep = std::string(1, char(179)), const std::string& horizontal_sep = std::string(1, char(196)), char vertical_border = char(179), const std::string& up_border = std::string(1, char(218)) + std::string(1, char(196)) + std::string(1, char(191)), const std::string& down_border = std::string(1, char(192)) + std::string(1, char(196)) + std::string(1, char(217))) {
std::vector<std::vector<std::string>> description_strings(1, std::vector<std::string>(description.size()));
for (size_t i = 0; i < description.size(); ++i) {
description_strings[0][i] = to_string(description[i], precision);
}
return make_table_decorated(description_strings, named_columns, vertical_sep, horizontal_sep, vertical_border, up_border, down_border);
}
template <typename T> // Constructors required: T(T); Operators required: *(T, T), =(T, T)
T binary_exponentiation(const T& base, uint32_t degree, const T& one = T(1)) {
T result(one);
for (size_t i = 8 * sizeof(uint32_t); i > 0; --i) {
result = result * result;
if (degree & (static_cast<uint32_t>(1) << (i - 1))) {
result = result * base;
}
}
return result;
}
template <typename T, class HT = std::hash<T>> // Structures required: std::hash<T>
void hash_combine(size_t& seed, const T& value, const HT& hasher = HT()) {
seed ^= hasher(value) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
}
template <typename It> // Operators required: !=(It, It), ++(It), *(It); Structures required: std::iterator_traits<It>
typename std::iterator_traits<It>::value_type get_value(It container_begin, It container_end, std::function<typename std::iterator_traits<It>::value_type(typename std::iterator_traits<It>::value_type, typename std::iterator_traits<It>::value_type)> func) {
if (!(container_begin != container_end)) {
throw func::AlgOutOfRange(__FILE__, __LINE__, "get_value, called from empty container.\n\n");
}
typename std::iterator_traits<It>::value_type result = *(container_begin++);
for (; container_begin != container_end; ++container_begin) {
result = func(result, *container_begin);
}
return result;
}
template <typename It> // Operators required: !=(It, It), ++(It), *(It); Structures required: std::iterator_traits<It>
typename std::iterator_traits<It>::value_type get_value(It container_begin, It container_end, const typename std::iterator_traits<It>::value_type& func(const typename std::iterator_traits<It>::value_type&, const typename std::iterator_traits<It>::value_type&)) {
return get_value(container_begin, container_end, [&](const typename std::iterator_traits<It>::value_type& left, const typename std::iterator_traits<It>::value_type& right) -> const typename std::iterator_traits<It>::value_type& { return func(left, right); });
}
template <typename It> // Operators required: !=(It, It), ++(It), *(It); Structures required: std::iterator_traits<It>
typename std::iterator_traits<It>::value_type get_value(It container_begin, It container_end, typename std::iterator_traits<It>::value_type func(typename std::iterator_traits<It>::value_type, typename std::iterator_traits<It>::value_type)) {
return get_value(container_begin, container_end, [&](const typename std::iterator_traits<It>::value_type& left, const typename std::iterator_traits<It>::value_type& right) -> const typename std::iterator_traits<It>::value_type& { return func(left, right); });
}
template <typename It> // Operators required: !=(It, It), ++(It), *(It); Structures required: std::iterator_traits<It>
void apply_func(It container_begin, It container_end, std::function<typename std::iterator_traits<It>::value_type(typename std::iterator_traits<It>::value_type)> func) {
for (; container_begin != container_end; ++container_begin) {
*container_begin = func(*container_begin);
}
}
template <typename It> // Operators required: !=(It, It), ++(It), *(It); Structures required: std::iterator_traits<It>
void apply_func(It container_begin, It container_end, const typename std::iterator_traits<It>::value_type& func(const typename std::iterator_traits<It>::value_type&)) {
apply_func(container_begin, container_end, [&](const typename std::iterator_traits<It>::value_type& value) -> const typename std::iterator_traits<It>::value_type& { return func(value); });
}
template <typename It> // Operators required: !=(It, It), ++(It), *(It); Structures required: std::iterator_traits<It>
void apply_func(It container_begin, It container_end, typename std::iterator_traits<It>::value_type func(typename std::iterator_traits<It>::value_type)) {
apply_func(container_begin, container_end, [&](const typename std::iterator_traits<It>::value_type& value) -> const typename std::iterator_traits<It>::value_type& { return func(value); });
}
// ^^^ ---------Functions--------- ^^^
// -----------------------------------
// vvv -----------Random---------- vvv
class Random {
template <bool HAS_ZIP_MAP, typename T>
class RandIntStruct {};
template <bool HAS_ZIP_MAP, typename T>
class RandFloatStruct {};
template <typename T> // Methods required: T::zip_map
class RandIntStruct<true, T> {
Random* random = nullptr;
public:
explicit RandIntStruct(Random* rnadom) {
this->random = rnadom;
}
T operator()(const T& left, const T& right) const {
return T::zip_map(left, right, [&](auto left, auto right) { return random->rand_int(left, right); });
}
};
template <typename T> // Methods required: T::zip_map
class RandFloatStruct<true, T> {
Random* random = nullptr;
public:
explicit RandFloatStruct(Random* rnadom) {
this->random = rnadom;
}
T operator()(const T& left, const T& right) const {
return T::zip_map(left, right, [&](auto left, auto right) { return random->rand_float(left, right); });
}
};
template <typename T>
class RandIntStruct<false, T> {
Random* random = nullptr;
public:
explicit RandIntStruct(Random* rnadom) {
this->random = rnadom;
}
T operator()(const T& left, const T& right) const {
return random->get_rand_int(left, right);
}
};
template <typename T>
class RandFloatStruct<false, T> {
Random* random = nullptr;
public:
explicit RandFloatStruct(Random* rnadom) {
this->random = rnadom;
}
T operator()(const T& left, const T& right) const {
return random->get_rand_float(left, right);
}
};
std::mt19937_64 generator_;
long double rand() {
return static_cast<long double>(generator_()) / static_cast<long double>(generator_.max());
}
int64_t get_rand_int(int64_t left, int64_t right) {
if (right < left) {
throw AlgInvalidArgument(__FILE__, __LINE__, "get_rand_int, invalid range.\n\n");
}
std::uniform_int_distribution<int64_t> int_generator(left, right);
return int_generator(generator_);
}
long double get_rand_float(long double left, long double right) {
if (right < left) {
throw AlgInvalidArgument(__FILE__, __LINE__, "get_rand_float, invalid range.\n\n");
}
return (right - left) * rand() + left;
}
template <typename T, typename... Args, typename U = decltype(T::zip_map(std::declval<Args>()...))>
static constexpr std::true_type has_zip_map_impl(int, Args &&...args);
template <typename T, typename... Args>
static constexpr std::false_type has_zip_map_impl(float, Args &&...args);
template <typename T, typename... Args>
static constexpr bool has_zip_map(Args &&...args) {
return decltype(has_zip_map_impl<T>(0, std::forward<Args>(args)...))::value;
}
public:
explicit Random(uint64_t seed) {
generator_.seed(seed);
}
Random& set_seed(uint64_t seed) {
generator_.seed(seed);
return *this;
}
template <typename T>
T rand_int(T left, T right) {
return RandIntStruct < has_zip_map<T>(left, right, [&](auto left, auto right) { return left; }), T > (this)(left, right);
}
template <typename It> // Operators required: !=(It, It), ++(It), *(It)
void rand_int_container(It left_begin, It left_end, It right_begin, It right_end, It result_begin) {
for (; left_begin != left_end && right_begin != right_end; ++left_begin, ++right_begin, ++result_begin) {
*result_begin = rand_int(*left_begin, *right_begin);
}
}
template <typename It> // Operators required: !=(It, It), ++(It), *(It); Structures required: std::iterator_traits<It>
void rand_int_container(const typename std::iterator_traits<It>::value_type& left, const typename std::iterator_traits<It>::value_type& right, It result_begin, It result_end) {
for (; result_begin != result_end; ++result_begin) {
*result_begin = rand_int(left, right);
}
}
template <typename T>
T rand_float(T left, T right) {
return RandFloatStruct < has_zip_map<T>(left, right, [&](auto left, auto right) { return left; }), T > (this)(left, right);
}
template <typename It> // Operators required: !=(It, It), ++(It), *(It)
void rand_float_container(It left_begin, It left_end, It right_begin, It right_end, It result_begin) {
for (; left_begin != left_end && right_begin != right_end; ++left_begin, ++right_begin, ++result_begin) {
*result_begin = rand_float(*left_begin, *right_begin);
}
}
template <typename It> // Operators required: !=(It, It), ++(It), *(It); Structures required: std::iterator_traits<It>
void rand_float_container(const typename std::iterator_traits<It>::value_type& left, const typename std::iterator_traits<It>::value_type& right, It result_begin, It result_end) {
for (; result_begin != result_end; ++result_begin) {
*result_begin = rand_float(left, right);
}
}
template <typename It>
void shuffle(It begin, It end) {
std::shuffle(begin, end, generator_);
}
template <typename T> // Casts required: T(size_t)
std::vector<T> permutation(size_t size) {
std::vector<T> result(size);
for (size_t i = 0; i < size; ++i) {
result[i] = T(i + 1);
}
shuffle(result.begin(), result.end());
return result;
}
std::vector<size_t> permutation(size_t size) {
std::vector<size_t> result(size);
for (size_t i = 0; i < size; ++i) {
result[i] = i + 1;
}
shuffle(result.begin(), result.end());
return result;
}
template <typename T>
void random_swap(std::vector<T>& vector) {
if (vector.empty()) {
return;
}
size_t first = rand_int(static_cast<size_t>(0), vector.size() - 1);
size_t seccond = rand_int(static_cast<size_t>(0), vector.size() - 1);
std::swap(vector[first], vector[seccond]);
}
bool try_event(long double probability) {
return func::less_equality(rand_float(static_cast<long double>(0), static_cast<long double>(1)), probability);
}
};
// ^^^ -----------Random---------- ^^^
// -----------------------------------
} // Functions, Random | Version: 1.0
using namespace alg::func;