4 stable releases

2.0.0 Nov 23, 2019
1.0.2 Nov 17, 2019
1.0.0 Nov 16, 2019

#861 in Algorithms

Download history 102/week @ 2023-11-27 78/week @ 2023-12-04 89/week @ 2023-12-11 108/week @ 2023-12-18 15/week @ 2023-12-25 40/week @ 2024-01-01 104/week @ 2024-01-08 91/week @ 2024-01-15 121/week @ 2024-01-22 80/week @ 2024-01-29 114/week @ 2024-02-05 111/week @ 2024-02-12 105/week @ 2024-02-19 108/week @ 2024-02-26 104/week @ 2024-03-04 97/week @ 2024-03-11

425 downloads per month
Used in 5 crates (4 directly)

MIT license

425KB
3.5K SLoC

divsufsort

This crate contains a Rust handmade port of Yuta Mori's libdivsufsort, as found on:

Changes

The main changes from the C codebase are as follows.

Instead of passing pointers to T (the original text) and SA (the suffix array), slices and indices are passed instead. This sometimes involves adding more parameters to functions (like tr_heapsort).

Some macros (for stacks, used in sssort and trsort) have been replaced with proper Rust types. The SAPtr type is used to represent an index into SA. A/B/B* access has also been translated from C macros to Rust (inlined) functions.

Cross-checking is only built when the crosscheck feature is enabled. It is not intended for general use, only for debugging the divsufsort crate.

Authors

The original C code was written by Yuta Mori.

The port was done by hand, by Amos Wenger.

License

divsufsort is released under the MIT license, same as the original.

See the LICENSE file for details.

Dependencies