arina-kaa / OOP

0 stars 0 forks source link

Замечания по RLE #3

Open alexey-malov opened 4 years ago

alexey-malov commented 4 years ago

https://github.com/arina-kaa/OOP/blob/38ea31de104b2b132f5ea8931e3a7c33926f5c8e/lab_01_04_01/lab_01_04_01.cpp#L66-L98

bool CompressChar(CompressionContext& context, char c, ostream& output); bool FlushContext(CompressionContext& context, ostream& output;

// внутри функции компрессии CompressionContext& ctx; while(input.get(currentChar)) { CompressChar(ctx, currentChar, output); } FlushContext(ctx, output);



- [x] Аналогично сделайте с распаковкой
alexey-malov commented 4 years ago
alexey-malov commented 4 years ago

https://github.com/arina-kaa/OOP/blob/38ea31de104b2b132f5ea8931e3a7c33926f5c8e/lab_01_04_01/lab_01_04_01.cpp#L134-L163

using Transformer = function<bool(istream& input, ostream& output)>;
bool TransformFile(const string& inputFileName, const string& outputFileName, const Transformer& transformer);

bool Pack(istream& input, ostream& output);
bool Unpack(istream& input, ostream& output);

...
// Для запаковки
TransformFile(args.inputFileName, args.outputFileName, Pack);
// Для запаковки
TransformFile(args.inputFileName, args.outputFileName, Unpack);
arina-kaa commented 4 years ago

Замечания исправлены.

alexey-malov commented 4 years ago

https://github.com/arina-kaa/OOP/blob/0b2db1ad58b73acc3fabc1c59014881406d50d27/lab_01_04_01/lab_01_04_01.cpp#L35-L48

alexey-malov commented 4 years ago

https://github.com/arina-kaa/OOP/blob/0b2db1ad58b73acc3fabc1c59014881406d50d27/lab_01_04_01/lab_01_04_01.cpp#L69-L75

alexey-malov commented 4 years ago

https://github.com/arina-kaa/OOP/blob/0b2db1ad58b73acc3fabc1c59014881406d50d27/lab_01_04_01/lab_01_04_01.cpp#L121-L130

alexey-malov commented 4 years ago

https://github.com/arina-kaa/OOP/blob/0b2db1ad58b73acc3fabc1c59014881406d50d27/lab_01_04_01/lab_01_04_01.cpp#L135-L141

arina-kaa commented 4 years ago

Замечания исправлены.

alexey-malov commented 4 years ago

https://github.com/arina-kaa/OOP/blob/952cb2f8a1fc86a1ef1ad3fe6d1ba6a26039e802/lab_01_04_01/lab_01_04_01.cpp#L72-L82 https://github.com/arina-kaa/OOP/blob/952cb2f8a1fc86a1ef1ad3fe6d1ba6a26039e802/lab_01_04_01/lab_01_04_01.cpp#L104-L112

alexey-malov commented 4 years ago

https://github.com/arina-kaa/OOP/blob/952cb2f8a1fc86a1ef1ad3fe6d1ba6a26039e802/lab_01_04_01/lab_01_04_01.cpp#L104-L112

alexey-malov commented 4 years ago

https://github.com/arina-kaa/OOP/blob/952cb2f8a1fc86a1ef1ad3fe6d1ba6a26039e802/lab_01_04_01/lab_01_04_01.cpp#L104-L115

alexey-malov commented 4 years ago

https://github.com/arina-kaa/OOP/blob/952cb2f8a1fc86a1ef1ad3fe6d1ba6a26039e802/lab_01_04_01/lab_01_04_01.cpp#L117-L123

alexey-malov commented 4 years ago

https://github.com/arina-kaa/OOP/blob/952cb2f8a1fc86a1ef1ad3fe6d1ba6a26039e802/lab_01_04_01/lab_01_04_01.cpp#L125-L134

alexey-malov commented 4 years ago

https://github.com/arina-kaa/OOP/blob/952cb2f8a1fc86a1ef1ad3fe6d1ba6a26039e802/lab_01_04_01/lab_01_04_01.cpp#L147-L151

alexey-malov commented 4 years ago

https://github.com/arina-kaa/OOP/blob/952cb2f8a1fc86a1ef1ad3fe6d1ba6a26039e802/lab_01_04_01/lab_01_04_01.cpp#L197 https://github.com/arina-kaa/OOP/blob/952cb2f8a1fc86a1ef1ad3fe6d1ba6a26039e802/lab_01_04_01/lab_01_04_01.cpp#L205-L220