Valhalla Legends Archive

Programming => General Programming => C/C++ Programming => Topic started by: R.a.B.B.i.T on March 02, 2005, 05:45 PM

Title: hash table
Post by: R.a.B.B.i.T on March 02, 2005, 05:45 PM
I've never looked to deeply into this because I've always found a way to do things without them, but they make life so much easier in my PHP and Perl scripts.  Do the exist in a fashion which I could use with ease and if so, where/how?
Title: Re: hash table
Post by: Mephisto on March 02, 2005, 07:06 PM
To my knowledge there's no standard hash table avaliable in a C++ library, but there's a map from STL which is similar.  Do a search on "std::map"
Title: Re: hash table
Post by: R.a.B.B.i.T on March 03, 2005, 04:59 PM
Plegh, I was hoping there was.  Thanks.