PDA

View Full Version : Help with a vector


C++
07-04-2009, 07:56 AM
Hi, for a class, I'm trying to implement a separate-chaining hash table stored in a vector that contains pointers to vectors where the keys will be stored. This is basically what I have: typedef vector KeyChain; vector Table;The problem I'm having is when I want to...