forked from mandliya/algorithms_and_data_structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generic.h
88 lines (75 loc) · 2.67 KB
/
generic.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
/***
* _ __ ___ _
* | |/ /___ ___ _ __ / __|__ _| |_ __
* | ' </ -_) -_) '_ \ | (__/ _` | | ' \
* |_|\_\___\___| .__/ \___\__,_|_|_|_|_|
* |_|
* _
* __ _ _ _ __| |
* / _` | ' \/ _` |
* \__,_|_||_\__,_|
*
* _ _ _ _ _ _
* | | ___ __ _ _ _ _ _ /_\ | |__ _ ___ _ _(_) |_| |_ _ __ ___
* | |__/ -_) _` | '_| ' \ / _ \| / _` / _ \ '_| | _| ' \| ' \(_-<
* |____\___\__,_|_| |_||_| /_/ \_\_\__, \___/_| |_|\__|_||_|_|_|_/__/
* |___/
* Yeah! Ravi let's do it!
*/
#ifndef GENERIC_H
#define GENERIC_H
#include <iostream>
#include <random>
#include <sstream>
#include <string>
template<typename T>
T MAX(T a, T b)
{
return ((a > b) ? a : b);
}
template<typename T>
T MIN(T a, T b)
{
return ((a < b) ? a : b);
}
namespace algo {
// swap two elements
template <typename T>
static inline void swap(T &a, T &b)
{
T _temp(std::move(a));
a = std::move(b);
b = std::move(_temp);
}
//Print the list of T
template <typename T>
static inline void printList(T *list, int count)
{
for (int i = 0; i < count; ++i) {
std::cout << list[i] << " ";
}
std::cout<< std::endl;
}
//generate a random int between min and max
static inline int random_range(const int min, const int max) {
std::random_device rd;
std::mt19937 mt(rd());
std::uniform_int_distribution<int> distribution(min, max);
return distribution(mt);
}
//generate a random double between min and max
static inline double random_range(const double min, const double max) {
// std::random_device rd;
// std::mt19937 mt(rd());
std::uniform_real_distribution<double> distribution(min, max);
std::default_random_engine re;
return distribution(re);
}
//convert an int to string
std::string intToString( int num ) {
std::stringstream ss;
ss << num;
return ss.str();
}
} //end of namespace algo
#endif //end of generic.h