1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
using namespace std;
class Polybius
{
public:
Polybius();
vector<char> encode(string test);
void decode(string test);
private:
vector<char> digitSqueeze(string test);
vector<char> alphaSqueeze(string test);
void find_char(int& col, int& row , char& p);
Array[5][5] = { { 'A', 'B', 'C', 'D', 'E' },
{ 'F', 'G', 'H', 'I', 'J' },
{ 'K', 'L', 'M', 'N', 'O' },
{ 'P', 'Q', 'R', 'S', 'T' },
{ 'U', 'V', 'W', 'X', 'Y' }};
};
|