Differences between vector, set, and tuple

后端 未结 7 579
庸人自扰
庸人自扰 2021-01-30 17:15

What are the differences between vectors, sets, and tuples in programming?

7条回答
  •  忘了有多久
    2021-01-30 17:40

    Vectors have an ordering, sets do not (and can't have duplicates), and tuples are close to vectors but are usually used more like structs in practice.

提交回复
热议问题