Right now I have a vector std::vector<char> myVector(4) containing any combination of a set of char lets say {@,#,O,*,%,$,!} may be more or less but not many more than that, might not always be 4 members either, but will be constant for any instance one instance.
now I stuck trying to create a data structure that can use an indefinite number of those combination as an index, to another vector.
in pseudo-code I am trying to accomplish:
SomeDataStructure['*']['#']['@']['O'] = someData
(someData is going to be a small class, but that shouldn't matter)
This is an operation critical piece that needs to run quickly, and will be run very often.
some approached i've tried to reason with were: a 4 dimensional array, but I can access those without numeric indices. Maybe some form of enumeration could solve this. Edit: would maps be a way to do this?
edit:
I resolved this using a map:
std::map<std::vector<char>, someData> myMap;