libsimplelist0

Memory-efficient generic linked list library
  http://code.brautaset.org/sl/
  0
  no reviews



Sl doesn't use container nodes. instead it requires a pointer to the next item directly in the datastructure you want to create lists (or stacks) of. this can give you significant memory savings when creating long lists of small structures. it also allows for fast push and pop operations since there is no need to allocate or free memory for the container nodes. it also means that a push can't fail because memory couldn't be allocated for the container node.