C/C++
stl_ll.txt
Associated article: An STL-Compatible Hybrid of Linked List & Hash Map
Tags: C/C++
Published source code accompanying the article by William Nagel in which he presents "Linked_hash," an STL- compatible data structure based on the best of the linked-list hash-map classes. Also see STL_LL.ZIP.
An STL-Compatible Hybrid of Linked List & Hash Map by William Nagel Example 1: // Typedef the node that linked_hash will be using internally. typedef _linked_hash_node<Key, Data, HashFcn, EqualKey, Alloc> _Node; // Typedef an allocator for allocating ...


