Re: interval trees..

2013-06-21 Thread David Williams
Hi Sunil, I created one here: https://github.com/mobiusinversion/interval-trees Here is the marginalia documentation http://mobiusinversion.github.io/interval-trees/ and the Clojars page https://clojars.org/interval-trees Please let me know if you have a chance to try this out and I would

Re: interval trees..

2012-03-22 Thread martin_clausen
Christophe Grand <https://plus.google.com/100767513147472178064> recently did a blog post on interval trees: http://clj-me.cgrand.net/2012/03/16/a-poor-mans-interval-tree/ On Monday, June 6, 2011 1:43:15 PM UTC+2, Sunil Nandihalli wrote: > > A simple googling revealed that interv

Re: interval trees..

2011-06-06 Thread Sunil S Nandihalli
A simple googling revealed that interval trees can be implemented using finger-trees .. but hmm. they are not ready yet.. :( Sunil. On Mon, Jun 6, 2011 at 5:05 PM, Sunil S Nandihalli < sunil.nandiha...@gmail.com> wrote: > Hello everybody, > Is there any implementation of Interval

interval trees..

2011-06-06 Thread Sunil S Nandihalli
Hello everybody, Is there any implementation of Interval Trees<http://en.wikipedia.org/wiki/Interval_tree> in Clojure. I found this Java implementation<http://www.thekevindolan.com/2010/02/interval-tree/index.html> but it does not have remove operation. Even some other Java Implemen