C++常用容器原理 2020-09-02 本文已影响0人 const_qiu 1. map 与unordered_map map:内部实现是一个红黑树,按key有序的 unordered_map:内部实现是一个hash表 2. set 与unordered_set