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
|
#include <iostream>
#include <cstdlib> //randint
#include <ctime> //randint
#include <vector>
#include <fstream>
#include <sstream>
using namespace std;
class Utility{
bool srand_has_exc;
public:
Utility(){
srand_has_exc = false;
}
//random
int randint(int start=0, int maxnum=0, int increment=0){
/*generate a random int max at maxnum, starting from start, increment add value to both
*
* maxnum = max number minus one
* start = number no less than accepted
* increment = add increment to
*/
if (!srand_has_exc){
srand(time(0));
srand_has_exc = true;
}
int num=0;
while (true){
num = (rand() % maxnum) + increment;
if (start == 0)
return num;
else if (num < start)
continue;
else
break;
}
return num;
}
//basic operations
string reverse(string s){
return string(s.rbegin(), s.rend());
}
int max(int a[], int size){
int mx = a[0];
for(int i=0; i<size; i++){
if(mx < a[i]){
mx = a[i];
}
}
return mx;
}
int min(int a[], int size){
int mn = a[0];
for(int i=0; i<size; i++){
if(mn > a[i]){
mn = a[i];
}
}
return mn;
}
int max(vector<int> v){
int mx = v[0];
for (vector<int>::size_type i = 0; i != v.size(); i++) {
if(mx < v[i]){
mx = v[i];
}
}
return mx;
}
int min(vector<int> v){
int mn = v[0];
for (vector<int>::size_type i = 0; i != v.size(); i++) {
if(mn > v[i]){
mn = v[i];
}
}
return mn;
}
//file i/o
void write(string filename, string data){
ofstream f;
f.open(filename);
f << data;
f.close();
}
void write(string filename, vector<string> v, string sep="\n"){
ofstream f;
f.open(filename);
for (vector<int>::size_type i = 0; i != v.size(); i++) {
f << v[i] << sep;
}
f.close();
}
void open(string filename){ //get entire line
string s = "";
ifstream f;
f.open(filename);
while(getline(f, s)){
cout << s <<endl;
}
f.close();
}
//type conversion
string int2str(int inter){
//convert from int to string
stringstream num_str;
num_str << inter;
return num_str.str();
}
int str2int(string str){
//convert from string to int
int i;
stringstream ss(str);
ss >> i;
return i;
}
int flo2int(float floater){
//convert from float to int
//rounds down
int i = static_cast<int>(floater);
return i;
}
int dou2int(double d){
//convert from double to int
//rounds down
int i = static_cast<int>(d);
return i;
}
string cha2str(char ch){
//ocnvert from cahr to string
stringstream ss;
string s;
ss << ch;
ss >> s;
return s;
}
char str2cha(string stringer){
//convert from string to char
stringstream ss;
char c;
ss << stringer;
ss >> c;
return c;
}
int cha2asc(char ch){
//convert from character to ascii number
int i;
i = (int)ch;
return i;
}
char asc2cha(int num){
//convert from ascii number to character
char c;
c = (char)num;
return c;
}
};
void test(){
Utility util;
for (int i=0; i<10; i++){
cout << util.randint(5, 25) << ' ';
}
cout << endl;
string gender[2] = {"Female", "Male"};
for (int i=0; i<10; i++){
cout << gender[util.randint(0,2)] << ' ';
}
cout << endl;
cout << util.reverse("some random string") << endl;
int a[10];
for (int i=0; i<10; i++){
a[i] = util.randint(0,25);
cout << a[i] << ' ';
}
cout << endl;
cout << "max num: " << util.max(a, 10) << endl;
cout << "max num: " << util.min(a, 10) << endl;
vector<int> v;
for (int i=0; i<util.randint(3,10); i++){
v.push_back(util.randint(0,100));
}
for (vector<int>::size_type i = 0; i != v.size(); i++) {
cout << v[i] << ' ';
}
cout << endl;
cout << util.max(v) << endl;
cout << util.min(v) << endl;
string name = "test.html";
util.write(name, "some\nrandom\ndata");
util.open(name);
vector<string> s = {"test", "this", "right\nnow"};
util.write(name, s);
util.open(name);
cout << util.int2str(1024).substr(0,3) << endl;
cout << util.str2int("24") + 1 << endl;
cout << util.flo2int(10.1) - 5 << endl;
cout << util.cha2str('c') + "h" << endl;
cout << util.str2cha("s") + 'h' << endl;
cout << util.cha2asc('c') << endl;
cout << util.asc2cha(99) << endl;
}
int main (){
test();
}
|