fn() createInvSuffixArray
Creates the inverse suffix array from a given suffix array.

Defined in <seqan/index.h>
Signature void createInvSuffixArray(invSuffixArray, suffixArray);

Parameters

invSuffixArray The resulting inverse suffix array.
suffixArray The precomputed suffix array for some text.

Detailed Description

This function should not be called directly. Please use indexCreate or indexRequire. The size of invSuffixArray must be at least length(suffixArray) before calling this function.

The complexity is linear in size of the suffix array.