Julian Tibble wrote: ... > his C++ program, since I'm not sure I can write a better hash table than > the g++ STL developers. I'm SURE you can write a hash-table that's a better hash-table than C++'s std::map, because the latter CANNOT be a hash table -- it must rely on ordering of keys, and is normally a red-black tree;-). Alex