Re: Balanced binary tree implementation

2009-07-23 Thread M.-A. Lemburg
Lucas P Melo wrote: > Hello, > > I would like to use a balanced binary tree implementation (preferably > within some API). > Any hints about where I could find it? > > I am looking for something that implements insertion, deletion, search > and a special search that re

Re: Balanced binary tree implementation

2009-07-21 Thread Piet van Oostrum
>>>>> Lucas P Melo (LPM) wrote: >LPM> Hello, >LPM> I would like to use a balanced binary tree implementation (preferably >LPM> within some API). >LPM> Any hints about where I could find it? >LPM> I am looking for something that implements insertion

Balanced binary tree implementation

2009-07-21 Thread Lucas P Melo
Hello, I would like to use a balanced binary tree implementation (preferably within some API). Any hints about where I could find it? I am looking for something that implements insertion, deletion, search and a special search that returns the lesser element bigger than a given key [1]. A