Microsoft Visual C++ Debug library
C++ |
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
| // Hamilton3.cpp: определяет точку входа для консольного приложения.
//
#include "stdafx.h"
#include <vector>
#include <iostream>
#include <string>
#include <sstream>
#include <algorithm>
using namespace std;
class HamiltonCipher{
vector<int> key;
public:
//символ-заполнитель, дописываеться к тексту пока
//кол-во символов % длина ключа <> 0
static const char FILL_CHAR = '*';
HamiltonCipher(const vector<int>& key){
setKey(key);
}
void setKey(vector<int> newKey){
key = newKey;
}
vector<int> getKey(){
return key;
}
string code(string input){
correctString(input);
string res;
int iPos = 0;
int iEnd = input.length();
while (iPos != iEnd){
auto keyPos = key.begin();
auto keyEnd = key.end();
while (keyPos != keyEnd){
res += input[iPos + (*keyPos)-1];
keyPos++;
}
iPos += key.size();
}
return res;
}
//поправить размер строки относительно размера ключа
//(дописывает символ-заполнитель в конце строки)
void correctString(string& input){
input.append(input.length() % key.size(), FILL_CHAR);
}
//удалить доп. символ из конца строки
void clearString(string& input){
while (input.at(input.length()-1) == FILL_CHAR)
input.resize(input.size() - 1);
}
//расшифровать строку
string decode(string encrypted){
string res = encrypted;
int keyShift = -1;
auto iPos = encrypted.begin();
auto iEnd = encrypted.end();
while (iPos != iEnd){
auto keyPos = key.begin();
auto keyEnd = key.end();
while (keyPos != keyEnd){
res[(*keyPos) + keyShift] = *iPos;
keyPos++;
iPos++;
}
keyShift += key.size();
}
clearString(res);
return res;
}
};
//проверяет являеться ли последовательность гиперкубом
//гиперкуб - числа от 1 до n включительно, при этом ни одно из них не повторяеться и последовательность являеться полной
//пример гиперкуба: 5 1 2 4 3, те числа от 1 до 5 включительно и никакое из них не пропущено
bool isItHypercube(vector<int> numbers){
sort(numbers.begin(), numbers.end());
return
((*(numbers.end() - 1) - *numbers.begin())+1) == numbers.size();
}
int main()
{
//получаем строку что надо зашифровать
string input;
cout << "Enter your text (without symbol * ):\n>> ";
getline(cin, input, '\n');
//получаем ключ
string strKey;
cout << "Enter key (only numbers):\n";
getline(cin, strKey, '\n');
//распарсиваем ключ
stringstream ss(strKey);
vector<int> key;
int tValue = -1;
while (ss.good()){
ss >> tValue;
key.push_back(tValue);
}
if (isItHypercube(key)){
HamiltonCipher hamilton(key);
//шифруем текст
string encoded = hamilton.code(input);
//дешфруем текст
string decoded = hamilton.decode(encoded);
cout << "Encoded text: " << encoded << endl;
cout << "Decoded text: " << decoded << endl;
}
else
cout << "Bad key (not hipercube) :(" << endl;
cout << endl;
system("PAUSE");
return 0;
} |
|
подскажите пожалуйста что за ошибка