Обновить sk1/compressor.c

This commit is contained in:
Yevhen Kozirovskyi 2025-01-28 19:05:01 +00:00
parent 33192ea354
commit 3e2e5bf4ea

View File

@ -5,7 +5,9 @@
#define BUFFER_SIZE 4096
#define MAX_SYMBOLS 257
#define WINDOW_CAPACITY 4096
#define MAX_MATCH_LENGTH 15
#define BUFFER_CAPACITY 4096
// Макрос для обмена двух узлов
#define SWAP_NODES(a, b) { Node* temp = a; a = b; b = temp; }