20 Aug
2010
20 Aug
'10
11:31 a.m.
On Fri, Aug 20, 2010 at 2:21 AM, B Hart
Can someone please provide an example of how to best use unordered_map/set to store/lookup many small arrays of integers. e.g. unsigned int I[5] = {1000,3344455,12455222,8832232}; I'm guessing that there is no facility for using raw C++ arrays, and that one must wrap them in a struct.
I guess you mean C arrays and not C++ arrays as C++ arrays are probably std::vector's. C arrays or C++ vectors would work fine though, but you would need to supply your own comparison function, and if C arrays add an ending tag like zero or have a static length.