Compare commits
2 Commits
cac4809a64
...
b3f3cd0526
Author | SHA1 | Date | |
---|---|---|---|
|
b3f3cd0526 | ||
|
24f613f823 |
0
sk1/.1.swp
Normal file
0
sk1/.1.swp
Normal file
0
sk1/.compressor.c.swp
Normal file
0
sk1/.compressor.c.swp
Normal file
18
sk1/Makefile
Normal file
18
sk1/Makefile
Normal file
@ -0,0 +1,18 @@
|
||||
CC = gcc
|
||||
CFLAGS = -Wall -Wextra -std=c11
|
||||
TARGET = compressor
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
$(TARGET): main.o compressor.o
|
||||
$(CC) $(CFLAGS) -o $(TARGET) main.o compressor.o
|
||||
|
||||
main.o: main.c compressor.h
|
||||
$(CC) $(CFLAGS) -c main.c
|
||||
|
||||
compressor.o: compressor.c compressor.h
|
||||
$(CC) $(CFLAGS) -c compressor.c
|
||||
|
||||
clean:
|
||||
rm -f *.o $(TARGET)
|
||||
|
11
sk1/compressed.txt
Normal file
11
sk1/compressed.txt
Normal file
@ -0,0 +1,11 @@
|
||||
0-A
|
||||
0-n
|
||||
0-t
|
||||
0-o
|
||||
2-
|
||||
0-K
|
||||
4-z
|
||||
0-a
|
||||
0-r
|
||||
0-
|
||||
|
BIN
sk1/compressor
Executable file
BIN
sk1/compressor
Executable file
Binary file not shown.
126
sk1/compressor.c
126
sk1/compressor.c
@ -1,43 +1,64 @@
|
||||
#include "compressor.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#define BUFFER_SIZE 1024
|
||||
#define LZ78_DICT_SIZE 256
|
||||
// Trie (prefix tree) structure for LZ78 compression
|
||||
struct dict {
|
||||
int index;
|
||||
struct dict* characters[LZ78_DICT_SIZE];
|
||||
};
|
||||
|
||||
// Function prototypes
|
||||
int compress(const char* input_file_name, const char* output_file_name);
|
||||
int decompress(const char* input_file_name, const char* output_file_name);
|
||||
void lz78_compress(FILE* in, FILE* out);
|
||||
void lz78_decompress(FILE* in, FILE* out);
|
||||
|
||||
void print_usage() {
|
||||
printf("Usage:\n");
|
||||
printf(" ./compressor -c infile outfile Compress infile into outfile\n");
|
||||
printf(" ./compressor -d compressed uncompressed Decompress compressed into uncompressed\n");
|
||||
// Free the dictionary trie
|
||||
void delete_dict(struct dict* tree) {
|
||||
if (!tree) {
|
||||
return;
|
||||
}
|
||||
for (int i = 0; i < LZ78_DICT_SIZE; i++) {
|
||||
delete_dict(tree->characters[i]);
|
||||
}
|
||||
free(tree);
|
||||
}
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
if (argc != 4) {
|
||||
print_usage();
|
||||
return 1;
|
||||
// LZ78 Compression
|
||||
void lz78_compress(FILE* in, FILE* out) {
|
||||
struct dict* root = calloc(1, sizeof(struct dict));
|
||||
struct dict* current = root;
|
||||
int index = 1;
|
||||
int c;
|
||||
|
||||
while ((c = fgetc(in)) != EOF) {
|
||||
if (current->characters[c]) {
|
||||
current = current->characters[c];
|
||||
} else {
|
||||
current->characters[c] = calloc(1, sizeof(struct dict));
|
||||
current->characters[c]->index = index++;
|
||||
fprintf(out, "%d-%c\n", current->index, c);
|
||||
current = root;
|
||||
}
|
||||
}
|
||||
|
||||
const char* mode = argv[1];
|
||||
const char* infile = argv[2];
|
||||
const char* outfile = argv[3];
|
||||
delete_dict(root);
|
||||
}
|
||||
|
||||
if (strcmp(mode, "-c") == 0) {
|
||||
return compress(infile, outfile);
|
||||
} else if (strcmp(mode, "-d") == 0) {
|
||||
return decompress(infile, outfile);
|
||||
} else {
|
||||
print_usage();
|
||||
return 1;
|
||||
// LZ78 Decompression
|
||||
void lz78_decompress(FILE* in, FILE* out) {
|
||||
char buffer[LZ78_DICT_SIZE][BUFFER_SIZE] = {""};
|
||||
int index, dict_index = 1;
|
||||
char c;
|
||||
|
||||
while (fscanf(in, "%d-%c\n", &index, &c) == 2) {
|
||||
if (index > 0) {
|
||||
fprintf(out, "%s", buffer[index]);
|
||||
}
|
||||
fputc(c, out);
|
||||
snprintf(buffer[dict_index], BUFFER_SIZE, "%s%c", buffer[index], c);
|
||||
dict_index++;
|
||||
}
|
||||
}
|
||||
|
||||
// Compress function
|
||||
int compress(const char* input_file_name, const char* output_file_name) {
|
||||
FILE* input_file = fopen(input_file_name, "rb");
|
||||
if (!input_file) {
|
||||
@ -61,6 +82,7 @@ int compress(const char* input_file_name, const char* output_file_name) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Decompress function
|
||||
int decompress(const char* input_file_name, const char* output_file_name) {
|
||||
FILE* input_file = fopen(input_file_name, "rb");
|
||||
if (!input_file) {
|
||||
@ -84,53 +106,3 @@ int decompress(const char* input_file_name, const char* output_file_name) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// LZ78 compression
|
||||
struct dict {
|
||||
int index;
|
||||
struct dict* characters[LZ78_DICT_SIZE];
|
||||
};
|
||||
|
||||
void delete_dict(struct dict* tree) {
|
||||
if (!tree) {
|
||||
return;
|
||||
}
|
||||
for (int i = 0; i < LZ78_DICT_SIZE; i++) {
|
||||
delete_dict(tree->characters[i]);
|
||||
}
|
||||
free(tree);
|
||||
}
|
||||
|
||||
void lz78_compress(FILE* in, FILE* out) {
|
||||
struct dict* root = calloc(1, sizeof(struct dict));
|
||||
struct dict* current = root;
|
||||
int index = 1;
|
||||
int c;
|
||||
|
||||
while ((c = fgetc(in)) != EOF) {
|
||||
if (current->characters[c]) {
|
||||
current = current->characters[c];
|
||||
} else {
|
||||
current->characters[c] = calloc(1, sizeof(struct dict));
|
||||
current->characters[c]->index = index++;
|
||||
fprintf(out, "%d-%c\n", current->index, c);
|
||||
current = root;
|
||||
}
|
||||
}
|
||||
|
||||
delete_dict(root);
|
||||
}
|
||||
|
||||
// LZ78 decompression
|
||||
void lz78_decompress(FILE* in, FILE* out) {
|
||||
char buffer[LZ78_DICT_SIZE][BUFFER_SIZE] = {""};
|
||||
int index;
|
||||
char c;
|
||||
|
||||
while (fscanf(in, "%d-%c\n", &index, &c) == 2) {
|
||||
if (index > 0) {
|
||||
fprintf(out, "%s", buffer[index]);
|
||||
}
|
||||
fputc(c, out);
|
||||
snprintf(buffer[index], BUFFER_SIZE, "%s%c", buffer[index], c);
|
||||
}
|
||||
}
|
||||
|
BIN
sk1/compressor.o
Normal file
BIN
sk1/compressor.o
Normal file
Binary file not shown.
1
sk1/input.txt
Normal file
1
sk1/input.txt
Normal file
@ -0,0 +1 @@
|
||||
Anton Kozar
|
30
sk1/main.c
Normal file
30
sk1/main.c
Normal file
@ -0,0 +1,30 @@
|
||||
#include "compressor.h"
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
void print_usage() {
|
||||
printf("Usage:\n");
|
||||
printf(" ./compressor -c infile outfile Compress infile into outfile\n");
|
||||
printf(" ./compressor -d compressed uncompressed Decompress compressed into uncompressed\n");
|
||||
}
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
if (argc != 4) {
|
||||
print_usage();
|
||||
return 1;
|
||||
}
|
||||
|
||||
const char* mode = argv[1];
|
||||
const char* infile = argv[2];
|
||||
const char* outfile = argv[3];
|
||||
|
||||
if (strcmp(mode, "-c") == 0) {
|
||||
return compress(infile, outfile);
|
||||
} else if (strcmp(mode, "-d") == 0) {
|
||||
return decompress(infile, outfile);
|
||||
} else {
|
||||
print_usage();
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
BIN
sk1/main.o
Normal file
BIN
sk1/main.o
Normal file
Binary file not shown.
1
sk1/output.txt
Normal file
1
sk1/output.txt
Normal file
@ -0,0 +1 @@
|
||||
Anton Kozar
|
Loading…
Reference in New Issue
Block a user