Fixed flaws

This commit is contained in:
Andrew 2020-02-16 14:59:30 +07:00
parent 3321da106c
commit 7b02ef5eda
6 changed files with 150 additions and 48 deletions

View file

@ -5,6 +5,10 @@
using namespace std;
int readBinInt(istream &ist);
void writeBinInt(int num, ostream &ost);
void text2bin(istream &ist, ostream &ost);
void my_task(istream &ist);
@ -31,31 +35,44 @@ int main() {
return 0;
}
int readBinInt(istream &ist) {
int x = 0;
ist.read(reinterpret_cast<char*>(&x), sizeof(int));
return x;
}
void writeBinInt(int num, ostream &ost) {
ost.write(reinterpret_cast<char*>(&num), sizeof(int));
}
void text2bin(istream &ist, ostream &ost) {
int N, M;
ist >> N >> M;
ost << char(N) << char(M);
writeBinInt(N, ost);
writeBinInt(M, ost);
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
int cv;
ist >> cv;
ost << char(cv);
writeBinInt(cv, ost);
}
}
}
void my_task(istream &ist) {
ist.seekg(0, ios::beg);
int k;
cout << "k >>>";
cin >> k;
int N = int(ist.get()),
M = int(ist.get());
int N = readBinInt(ist),
M = readBinInt(ist);
if (k-1 > M) {
return;
}
int **mtx = new int*[N];
for (int i = 0; i < N; i++) {
int *row = new int[M]();
for (int j = 0; j < M; j++) {
*(row + j) = int(ist.get());
*(row + j) = readBinInt(ist);
}
*(mtx + i) = row;
}