Differences between vector, set, and tuple

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

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

7条回答
  •  伪装坚强ぢ
    2021-01-30 17:44

    • Vector: Ordered collection of objects of the same type.
    • Set: Unordered collection of objects, possibly of the same type or possibly different depending on the collection type and language. Any given object can only appear once.
    • Tuple: Ordered collection of objects of different types.

提交回复
热议问题