suffix-arrays: simplify a bit.

locals-and-roots
John Benediktsson 2016-04-15 13:20:11 -07:00
parent 1a7547f33a
commit 97e87f4a05
1 changed files with 15 additions and 17 deletions

View File

@ -1,7 +1,7 @@
! Copyright (C) 2008 Marc Fauconneau.
! See http://factorcode.org/license.txt for BSD license.
USING: accessors binary-search fry kernel math math.order
parser sequences sets sorting ;
USING: accessors binary-search fry kernel math math.order parser
sequences sets sorting ;
IN: suffix-arrays
<PRIVATE
@ -15,26 +15,24 @@ IN: suffix-arrays
: find-index ( begin suffix-array -- index/f )
[ prefix<=> ] with search drop ;
: from-to ( index begin suffix-array -- from/f to/f )
swap '[ _ head? not ]
[ find-last-from drop dup [ 1 + ] when ]
[ find-from drop ] 3bi ;
: query-from ( index begin suffix-array -- from )
swap '[ _ head? not ] find-last-from drop [ 1 + ] [ 0 ] if* ;
: <funky-slice> ( from/f to/f seq -- slice )
[
[ drop 0 or ] [ length or ] bi-curry bi*
[ min ] keep
] keep <slice> ; inline
: query-to ( index begin suffix-array -- to )
[ swap '[ _ head? not ] find-from drop ] [ length or ] bi ;
: query-range ( index begin suffix-array -- from to )
[ query-from ] [ query-to ] 3bi [ min ] keep ;
: (query) ( index begin suffix-array -- matches )
[ query-range ] keep <slice> [ seq>> ] map members ;
PRIVATE>
: >suffix-array ( seq -- array )
members
[ suffixes ] map concat natural-sort ;
: >suffix-array ( seq -- suffix-array )
members [ suffixes ] map concat natural-sort ;
SYNTAX: SA{ \ } [ >suffix-array ] parse-literal ;
: query ( begin suffix-array -- matches )
2dup find-index dup
[ -rot [ from-to ] keep <funky-slice> [ seq>> ] map members ]
[ 3drop { } ] if ;
[ find-index ] 2keep '[ _ _ (query) ] [ { } ] if* ;