30.04.2010, 09:35
(
Last edited by Zeex; 15/09/2010 at 11:39 AM.
)
This include package is intended to gather and bring you implementations of some common data structures which are useful for a number of applications. Currently not so many of them are supported (make them without pointers and dynamic memory is a little bit hard) but I will update this library whenever I finish implementing a new structure so keep it in mind and check this topic sometimes.
Since I've just recently become interested in this subject and now trying to understand all these things the code may be not the perfect and sometimes a little buggy, though you can report me the bugs you find and I will fix them
At the moment the following structures are provided:
Since I've just recently become interested in this subject and now trying to understand all these things the code may be not the perfect and sometimes a little buggy, though you can report me the bugs you find and I will fix them
At the moment the following structures are provided:
- Doubly-linked linear list - ...
- Red-Black tree (self-balanced binary tree) - http://zeex.pastebin.com/Ec92KMZc
- Hash table (using cuckoo hashing) - ...