STL练习
题单介绍
STL 是 C++ 的核心库之一,掌握它将大大提升编程效率。请学习并熟悉以下内容:
* **容器**:`vector`, `list`, `deque`, `set`, `map`, `unordered_map` 等
* **算法**:`sort`, `find`, `binary_search`, `accumulate`, `lower_bound`, `upper_bound` 等
* **迭代器**:如何使用迭代器遍历容器
* **常用技巧**:`pair`, `tuple`, `algorithm` 中的常用算法