Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

creating large maps cpp

For large static maps, you are better to use a sorted vector of pairs, then
using std::lower_bound to search through it.

(i.e. std::vector<std::pair<int, int>> myBigListOfStuff) 
 
PREVIOUS NEXT
Tagged: #creating #large #maps #cpp
ADD COMMENT
Topic
Name
9+1 =