I'm trying to find open-source implementations of Trees (not binary) like Red-black, B-Trees, 2-3 Trees, or General Tree, ideally for Squeak/Pharo, but any other implementations in other Smalltalk flavor will be fine too. I've seen SqueakSource but there are too many binary trees packages and most of them seems to belong to students projects. Do you know tree implementations?

link|improve this question

79% accept rate
Gah! You ask a month or two too soon: I'm about to leverage my unification library to implement red-black and finger trees. – Frank Shearar Aug 2 '11 at 20:03
feedback

1 Answer

up vote 4 down vote accepted

In http://www.squeaksource.com/BTree.html you find a B-Tree implementation that is extensively used in many commercial applications.

link|improve this answer
Please correct me if I'm wrong, that implementation is suited or optimized for disk-based retrieval? My data set is relatively small to fit into object memory, however I will give it a try (I did not understood the tests) – user869097 Aug 3 '11 at 7:38
1  
The BTree package in squeaksource.com/BTree.html is purely for in-memory use. However, based on this code many specialized implementations for disc-based persistency in OODBs have been created: OmniBase (squeaksource.com/OmniSupport.html), GOODS (squeaksource.com/GOODS.html), and I think also for GemStone/S and Magma. – Lukas Renggli Aug 3 '11 at 18:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.