! Copyright (C) 2007 Slava Pestov, Chris Double, Doug Coleman, ! Eduardo Cavazos, Daniel Ehrenberg. ! See http://factorcode.org/license.txt for BSD license. USING: combinators.lib kernel sequences math namespaces assocs random sequences.private shuffle math.functions arrays math.parser math.private sorting strings ascii macros assocs.lib quotations hashtables math.order locals generalizations ; IN: sequences.lib : each-withn ( seq quot n -- ) nwith each ; inline : each-with ( seq quot -- ) with each ; inline : each-with2 ( obj obj list quot -- ) 2 each-withn ; inline : map-withn ( seq quot n -- newseq ) nwith map ; inline : map-with ( seq quot -- ) with map ; inline : map-with2 ( obj obj list quot -- newseq ) 2 map-withn ; inline ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! : each-percent ( seq quot -- ) >r dup length dup [ / ] curry [ 1+ ] prepose r> compose 2each ; inline ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! : map-reduce ( seq map-quot reduce-quot -- result ) >r [ unclip ] dip [ call ] keep r> compose reduce ; inline : reduce* ( seq quot -- result ) [ ] swap map-reduce ; inline ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! : higher ( a b quot -- c ) [ compare +gt+ eq? ] curry most ; inline : lower ( a b quot -- c ) [ compare +lt+ eq? ] curry most ; inline ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! : longer ( a b -- c ) [ length ] higher ; : shorter ( a b -- c ) [ length ] lower ; ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! : longest ( seq -- item ) [ longer ] reduce* ; : shortest ( seq -- item ) [ shorter ] reduce* ; ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! : bigger ( a b -- c ) [ ] higher ; : smaller ( a b -- c ) [ ] lower ; ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! : biggest ( seq -- item ) [ bigger ] reduce* ; : smallest ( seq -- item ) [ smaller ] reduce* ; ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! : minmax ( seq -- min max ) #! find the min and max of a seq in one pass 1/0. -1/0. rot [ tuck max >r min r> ] each ; ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! : ,, ( obj -- ) building get peek push ; : v, ( -- ) V{ } clone , ; : ,v ( -- ) building get dup peek empty? [ dup pop* ] when drop ; : (monotonic-split) ( seq quot -- newseq ) [ >r dup unclip suffix r> v, [ pick ,, call [ v, ] unless ] curry 2each ,v ] { } make ; : monotonic-split ( seq quot -- newseq ) over empty? [ 2drop { } ] [ (monotonic-split) ] if ; : delete-random ( seq -- value ) [ length random ] keep [ nth ] 2keep delete-nth ; ERROR: element-not-found ; : split-around ( seq quot -- before elem after ) dupd find over [ element-not-found ] unless >r cut rest r> swap ; inline : (map-until) ( quot pred -- quot ) [ dup ] swap 3compose [ [ drop t ] [ , f ] if ] compose [ find 2drop ] curry ; : map-until ( seq quot pred -- newseq ) (map-until) { } make ; : take-while ( seq quot -- newseq ) [ not ] compose [ find drop [ head-slice ] when* ] curry [ dup ] prepose keep like ; ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! : exact-strings ( alphabet length -- seqs ) >r dup length r> exact-number-strings map-alphabet ; : strings ( alphabet length -- seqs ) >r dup length r> number-strings map-alphabet ; : switches ( seq1 seq -- subseq ) ! seq1 is a sequence of ones and zeroes >r [ length ] keep [ nth 1 = ] curry filter r> [ nth ] curry { } map-as ; : power-set ( seq -- subsets ) 2 over length exact-number-strings swap [ switches ] curry map ; : push-either ( elt quot accum1 accum2 -- ) >r >r keep swap r> r> ? push ; inline : 2pusher ( quot -- quot accum1 accum2 ) V{ } clone V{ } clone [ [ push-either ] 3curry ] 2keep ; inline : partition ( seq quot -- trueseq falseseq ) over >r 2pusher >r >r each r> r> r> drop ; inline : cut-find ( seq pred -- before after ) dupd find drop dup [ cut ] when ; : cut3 ( seq pred -- first mid last ) [ cut-find ] keep [ not ] compose cut-find ; : (cut-all) ( seq pred quot -- ) [ >r cut3 r> dip >r >r , r> [ , ] when* r> ] 2keep pick [ (cut-all) ] [ 3drop ] if ; : cut-all ( seq pred quot -- first mid last ) [ (cut-all) ] { } make ; : human-sort ( seq -- newseq ) [ dup [ digit? ] [ string>number ] cut-all ] { } map>assoc sort-values keys ; : ?first ( seq -- first/f ) 0 swap ?nth ; inline : ?second ( seq -- second/f ) 1 swap ?nth ; inline : ?third ( seq -- third/f ) 2 swap ?nth ; inline : ?fourth ( seq -- fourth/f ) 3 swap ?nth ; inline : ?first2 ( seq -- 1st/f 2nd/f ) dup ?first swap ?second ; inline : ?first3 ( seq -- 1st/f 2nd/f 3rd/f ) dup ?first2 rot ?third ; inline : ?first4 ( seq -- 1st/f 2nd/f 3rd/f 4th/f ) dup ?first3 roll ?fourth ; inline USE: continuations : ?subseq ( from to seq -- subseq ) >r >r 0 max r> r> [ length tuck min >r min r> ] keep subseq ; ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! List the positions of obj in seq : indices ( seq obj -- seq ) >r dup length swap r> [ = [ ] [ drop f ] if ] curry 2map sift ; : attempt-each ( seq quot -- result ) (each) iterate-prep (attempt-each-integer) ; inline : ?nth* ( n seq -- elt/f ? ) 2dup bounds-check? [ nth-unsafe t ] [ 2drop f f ] if ; flushable : remove-nth ( n seq -- seq' ) [ swap head-slice ] [ swap 1+ tail-slice ] 2bi append ; : insert-nth ( elt n seq -- seq' ) swap cut-slice [ swap 1array ] dip 3append ; : if-seq ( seq quot1 quot2 -- ) [ f like ] 2dip if* ; inline : if-empty ( seq quot1 quot2 -- ) swap if-seq ; inline : when-empty ( seq quot1 -- ) [ ] if-empty ; inline : unless-empty ( seq quot1 -- ) [ ] swap if-empty ; inline