If I want to create an associative array in C++ without the use of std::map, what are the possibilities? I want to set it up as a template so that it can be used with various datatypes.
Example:
Array<int> // (associative array),
and then be able to insert elements into the list (associative array) or find elements from the list.
Thanks
KT