CompressibleSortedSet - A java class that efficiently sorts and compresses a collection of objects


The CompressibleSortedSet<T> class represents a sorted set of objects.

In general, insertions and removals of objects in a CompressibleSortedSet are not processed one by one, but accumulated and then processed in batch mode, from time to time.

The intern organization of this set allows automatic partial compression of its data. To be able to use this set it is necessary to have an implementation of an object comparator (java.util.Comparator<T>) and an object coder (baobab.util.Coder<T>). See the API documentation of the package baobab.util to see the list of classes and their functionality.

Developed by Marília D. V. Braga

Preliminary version - last update April 2008



  1. Java API
  2. Download
  3. References



1. Java API


Consult the API documentation of the package baobab.util to see the list of classes and their functionality.




2. Download


Version 1.0 beta (28/Apr/2008)
 
Executable, lib (jar) >> compressible.jar
Documentation (API) >> compressible-api.tar.gz
 




3. References


  1. Java




Developed by Marília D. V. Braga

Preliminary version - last update April 2008