Differences between vector, set, and tuple

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

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

7条回答
  •  一生所求
    2021-01-30 17:38

    A vector is an ordered sequence of items that does allow duplicates.

    A set is a collection of items that is unordered and does not allow duplicates.

    A tuple is an ordered sequence of items of a given length.

提交回复
热议问题