唐巧的博客

CSPJ 教学总结:STL

字数统计: 40阅读时长: 1 min
2025/04/12

先记录一下写作点:

string 类型

  • substr
  • find
  • replace
  • insert
  • erase
  • c_str

容器

  • pair
  • vector
  • deque
  • list
  • stack
  • queue
  • priority_queue
  • map
  • unordered_map
  • set
  • unordered_set

函数

  • sort
  • stable_sort
  • unique
  • next_permutation
  • nth_element
  • lower_bounds
  • upper_bounds
  • __gcd
CATALOG
  1. 1. string 类型
  2. 2. 容器
  3. 3. 函数