Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
289 views

How to sort array suffixes in block sorting

I'm reading the block sort algorithm from the Burrows and Wheeler paper. This a step of the algorithm: Suppose S= abracadabra Initialize an array W of N words W[0, ... , N - 1], such that W[i] ...
1
vote
1answer
147 views

Is radix sort used for suffix sorting?

I'm trying to implement block sorting. This is from the Burrows Wheeler paper. (Before this step, you create a V suffix array of S) Q4. [radix sort] Sort the elements of V , using the first two ...
0
votes
2answers
214 views

Optimization of the Burrows Wheeler transform

Hello I am having some difficulty optimizing the burrows wheeler transform. I'm trying to transform text files, however transforming large text files like the bible take way too long. Any idea on ...