#include #include #include int exists(const char *fname) { // check if the file exists FILE *file; if (file = fopen(fname, "r")) { fclose(file); return 1; } return 0;}void compress_file(FILE *fp_in, FILE *fp_out){ int count, ch, ch2; ch = getc(fp_in); ch2 = ch; while (ch2 != EOF){ // if next byte is the same increase count and test again for(count = 0; ch2 == ch && count < 255; count++){ ch2 = getc(fp_in); // set next variable for comparison } // write bytes into new file fprintf(fp_out, "%d,", count); fprintf(fp_out,"%d," , ch); ch = ch2; } fclose(fp_in); fclose(fp_out);}int main(){ char nameOfFile[70]; char nameOfFile2[70]; scanf("%s", &nameOfFile); // read the name of input file scanf("%s", &nameOfFile2); // read the name of output file FILE *input = fopen(nameOfFile, "rb"); FILE *output = fopen(nameOfFile2, "w"); int character[100]; // an array to store the character in decimal form int frequency[100]; // an array to store the frequency of how many times the character repeats int i; if(exists(nameOfFile) == 1){ // file exists do{ i=fgetc(input); compress_file(input, output); fprintf(output, "%d,%d", frequency, character); } while(i != EOF); }else{ // file doesn't exist fprintf(output, "file doesn't exist"); } fclose(input); fclose(output); return 0;}
đang được dịch, vui lòng đợi..
