rust标准库中的提供的集合类型如下:

  • Vec
  • VecDeque
  • LinkedList
  • HashMap
  • BTreeMap
  • HashSet
  • BTreeSet
  • BinaryHeap

    常用容器

    Vec

    Vec是一个动态数组。
    它的基本属性有:

  • len 个数

  • capacity 容量
  • T 数组中的具体类型

具体函数查阅std。

HashMap

哈希表。