]> Cypherpunks repositories - gostls13.git/commit
suffixarray: a package for creating suffixarray-based indexes
authorRobert Griesemer <gri@golang.org>
Wed, 22 Sep 2010 06:12:57 +0000 (23:12 -0700)
committerRobert Griesemer <gri@golang.org>
Wed, 22 Sep 2010 06:12:57 +0000 (23:12 -0700)
commit22974fbe8e0b15e2d2380d44dfa3e3e82574f8c5
treef5e30c3ad2c174d117754b8343c3e74eab6d5d87
parent176364900e5218c7652386d153f6445e345af2b9
suffixarray: a package for creating suffixarray-based indexes

This is a replacement for pending CL 2219042. It only contains
the raw suffixarray functionality with two methods:

- New       create a new index from some data
- Lookup    lookup occurences of a bytes slice in the data

Any other functionality (dealing with multiple data sets and
the corresponding position lists) is generic and doesn't have
to be part of this package.

Known performance bug: This implementation works fine for data sets
up to several megabytes as long as it doesn't contain very long
contiguous sequences of equal bytes. For instance, index creation for
all .go files under GOROOT (250KLOCs, approx. 9MB) takes ~50s on
2.66 GHz Intel Xeon as long as test/fixedbugs/257.go is excluded.
With that file, index creation times takes several days. 257.go contains
a string of 1M smiley faces.

There are more sophisticated suffixarray creation algorithms which
can handle very long common prefixes. The implementation can be
updated w/o the need to change the interface.

R=rsc, r, PeterGo
CC=golang-dev
https://golang.org/cl/2265041
src/pkg/Makefile
src/pkg/index/suffixarray/Makefile [new file with mode: 0644]
src/pkg/index/suffixarray/suffixarray.go [new file with mode: 0644]
src/pkg/index/suffixarray/suffixarray_test.go [new file with mode: 0644]