Differences between vector, set, and tuple

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

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

7条回答
  •  情话喂你
    2021-01-30 17:32

    Vectors have an ordering

    Tuples are ordered and can have repeat elements.

    Sets are unordered and repeat elements do not change the set.

    For example: {a,b}, {b,a}, and {b,b,a} are all the same set, while (a,b), (b,a) and (b,b,a) are all different tuples.

提交回复
热议问题