I'm trying to make a 3 dimensional array of booleans that tells me if I previously visited a location in 3d space for a simple navigation algorithm. The array could be quite large (something along the lines of 1,000,000 x 1,000,000 x 1,000,000 or maybe larger), so I'm wondering if it would be faster to declare an array of that size and set each boolean value to false, or to make a map with a key of coordinate (x, y, z) and a value of type bool.
From what I figure, the array would take O(1) to find or modify a coordinate, and the map would take O(log n) to find or insert a value. Obviously, for accessing values, the array is faster. However, does this offset the time it takes to declare such an array?
Thanks
std::unordered_mapis on average O(1) – Rapptz Sep 23 '12 at 0:09unordered_mapin C++11)? – Xeo Sep 23 '12 at 0:09bool) might be the best approach. If you expect to visit paths the smaller memory footprint of a set or a hash set (std::unordered_set; you can determine the value by the presence of an element) can offset the better access patterns. – Dietmar Kühl Sep 23 '12 at 0:20