Preferably in Java. I am interested in implementations of data structures such as Sets and Maps, and algorithms such as sorting, that are memory-efficient, not necessarily fast. I could live with O(n^2) fetch and store if the amount of memory and number of allocations was low. Anything out there?
|
For extremely compact structures compared to java standard ones, one could work at the bit level. That depends a lot on your data of course, the code can't really be generic I guess. I know nothing that could do it generically. You could have to develop it (possibly using the BitSet class). Something in Java that is extremely compact it the enum classes : EnumSet and EnumMaps. They are both extremely compact and extremely fast. The idea:
|
|||
|
|
|
O(n^2) seems really excessive. What exactly are you expecting from your data structure? Simply using a vector will give you O(n) worst case for storage and retrieval and O(n) space requirement. – The latter can’t really be reduced (barring a compressing data structure, but for that to work you need to provide a lot more information about your data domain) so why not simply use a vector? |
|||
|