vote up 1 vote down star
2

As the title says, what is the differences between vectors, sets, and tuples in programming?

flag

4 Answers

vote up 4 vote down check
  • 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.
link|flag
good shout on the type distinction! – Beau Martínez Jun 9 at 23:07
I haven't seen a definition of a vector before that restricts to a single type... interested, can you point me at a resource? – Brabster Jun 9 at 23:08
@Brabster: std::vector in C++ is an example. – RichieHindle Jun 9 at 23:13
Oh, I see thanks. Possibly some languages do constrain type for their Vector implementation and others do not (example Java, can take any Object in it's Vector implementation). I hadn't noticed that before. – Brabster Jun 9 at 23:17
1  
I think that since these terms cross the line into the proof-filled math side of CS, the definition is not necessarily going to be what your co-workers are using the word for. – ryansstack Jun 9 at 23:23
vote up 5 vote down

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.

Wikipedia is your friend for all of these.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

A tuple is a heterogeneous collection of objects, which should be treated as a single unit: for example, ("John", "Smith", 30) is a (String, String, Integer) tuple.

A list (in C++: and also vector) is a homogeneous collection of objects -- that is, each object can be treated uniformly. Whether they are actually the same type depends on the language, but the point is that they can be processed the same way.

A set is an unordered unique homogenous collection -- you know what objects it contains, and what type they are, but not in what order, and it only contains one of each object.

link|flag
double would be the 2 element tuple (2-tuple), although that term (usually) has a different meaning in the context of computers. – TokenMacGuy Jun 9 at 23:09
list and vector are distinct concepts in C++. Although they both represent ordered, homogeneous collections, list implies O(1) inserts and vector implies O(1) seek, that is list is implemented as some sort of linked list structure, and vector is implemented as an array. – TokenMacGuy Jun 9 at 23:11
Token: thanks for the list/vector duality, I've clarified that in C++ the vector is an additional type. – John Millikin Jun 9 at 23:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.