-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblLibraryOfBabel.hpp
More file actions
214 lines (165 loc) · 6.36 KB
/
blLibraryOfBabel.hpp
File metadata and controls
214 lines (165 loc) · 6.36 KB
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
#ifndef BL_LIBRARYOFBABEL_HPP
#define BL_LIBRARYOFBABEL_HPP
//-------------------------------------------------------------------
// FILE: blLibraryOfBabel.hpp
//
//
//
// PURPOSE: Functions that calculate the page number of a string
// and the corresponding string from a given page number.
//
// -- The page number would correspond to the string's
// position in a theoretical library big enough to hold
// all the knowledge that could ever be expressed
// using the number of characters in the string
//
// -- This is like an example of a "Library of Babel"
// -- Each string has a unique page number
// -- The functions are NOT case sensitive
//
//
//
// AUTHOR: Vincenzo Barbato
// http://www.barbatolabs.com
// navyenzo@gmail.com
//
//
//
// LISENSE: MIT-LICENCE
// http://www.opensource.org/licenses/mit-license.php
//-------------------------------------------------------------------
//-------------------------------------------------------------------
// Includes needed for this file
//-------------------------------------------------------------------
// Needed to carry out mathematical computations
#include <math.h>
#include <string>
//-------------------------------------------------------------------
//-------------------------------------------------------------------
// NOTE: This class is defined within the blAlgorithmsLIB namespace
//-------------------------------------------------------------------
namespace blAlgorithmsLIB
{
//-------------------------------------------------------------------
//-------------------------------------------------------------------
// The following function calculates the
// page number of a string.
// The page number would correspond to the string's
// position in a theoretical library big enough to hold
// all the knowledge that could ever be expressed
// using the number of characters in the string
//
// This is like an example of a "Library of Babel"
//
// Each string has a unique page number
// The function is NOT case sensitive
//
// The calculation expects the number type to be
// an arbitrary precision number big enough to be
// able to hold all the possible combinations of
// the alphabet being considered
//
// As of now, the calcultion uses a base 29 to
// represent the 26 letters of the english alphabet
// plus the space, point and comma
//-------------------------------------------------------------------
template<typename numberType>
void calculatePageNumber(const std::string& textInput,
numberType& pageNumber)
{
// This calculation is based
// on the following:
// space = 0
// point = 1
// comma = 2
// 'A' thru 'Z' and 'a' thru 'z' = 3 thru 28
// anything else for now = 0 (space)
pageNumber = 0;
numberType currentCharacterValue(0);
numberType base = numberType(29);
for(unsigned int i = 0; i < textInput.size(); ++i)
{
if(textInput[i] >= 'A' && textInput[i] <= 'Z')
currentCharacterValue = numberType(static_cast<int>(textInput[i]) - static_cast<int>('A') + static_cast<int>(3)) * std::pow(base,i);
else if(textInput[i] >= 'a' && textInput[i] <= 'z')
currentCharacterValue = numberType(static_cast<int>(textInput[i]) - static_cast<int>('a') + static_cast<int>(3)) * std::pow(base,i);
else if(textInput[i] == '.')
currentCharacterValue = pow(base,i);
else if(textInput[i] == ',')
currentCharacterValue = numberType(2) * pow(base,i);
else
currentCharacterValue = 0;
pageNumber += currentCharacterValue;
}
return;
}
//-------------------------------------------------------------------
//-------------------------------------------------------------------
// The following function calculates the string
// corresponding to a page number, the inverse
// calculation of the above function
//-------------------------------------------------------------------
template<typename numberType,
typename stringIteratorType>
void calculateStringFromPageNumber(const numberType& pageNumber,
const stringIteratorType& textBeginIterator,
const stringIteratorType& textEndIterator)
{
if(textBeginIterator == textEndIterator)
{
// We have no string to write
// the result into
return;
}
// This function calculates the string
// from a page number using a base 29
// system
// The base 29 system is represented as follows:
// ' ' -- space character = 0
// '.' -- point character = 1
// ',' -- comma character = 2
// 'A' thru 'Z' and 'a' thru 'z' -- alphabetical characters = 3 thru 29
// First let's save the current
// iterators
auto iterator = textBeginIterator;
// Now let's create the necessary
// variables needed to convert the
// page number
numberType quotient = pageNumber;
char remainder = 0;
numberType divisor = numberType(29);
numberType zero = numberType(0);
do
{
// Calculate the quotient and remainder
remainder = static_cast<char>(quotient % divisor);
quotient = quotient / divisor;
// Convert the remainder to
// the string character
switch(remainder)
{
case 0:
(*iterator) = ' ';
break;
case 1:
(*iterator) = '.';
break;
case 2:
(*iterator) = ',';
break;
default:
(*iterator) = remainder - static_cast<char>(3) + 'a';
break;
}
// Move on to the next
// string position
++iterator;
}
while((iterator != textEndIterator) && (quotient > zero));
}
//-------------------------------------------------------------------
//-------------------------------------------------------------------
// End of namespace
}
//-------------------------------------------------------------------
#endif // BL_LIBRARYOFBABEL_HPP