Database is useless without indexes. Business application is inefficient without sorted collections. HybridList package is a handy and efficient solution for managing sorted lists, dictionaries, hash-tables, etc.
Database is useless without indexes. Business application is inefficient without sorted collections. HybridList package is a handy and efficient solution for managing sorted lists, dictionaries, hash-tables, etc. Main features:- it is very FAST: better than skip-lists or red-black trees or hash tables- each node can be added to unlimited number of ordered lists - data can be linked in simple as well as double-linked list- it is EASY to use: overload compare functions and that's it!- search, insert, delete operations require O (lg n) comparisons in all cases- efficient memory usage : only several bytes for 'Next' object are required