Burrows Wheeler Transformation - Transformation Vector

190 views Asked by At

After transforming the input text of "abracdabra!", my transformation vector is [3, 0, 5, 6, 7, 9, 10, 8, 2, 1, 4], the text is then piped through a few more transformations and compressed to disk.

After closing the program, we obviously no longer have access to the transformation vector. Are we expected to write the transformation vector to disk? Wouldn't the size of the vector actually equal n characters? Wouldn't this actually increase the size of the compressed file?

1

There are 1 answers

1
usr On BEST ANSWER

The Burrows Wheeler Transformation is reversible without the transformation vector.