📜  创建大型地图 cpp - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:42.948000             🧑  作者: Mango

代码示例1
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> myBigListOfStuff)