Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the fundamental difference between the Set<E> and List<E> interfaces?

share|improve this question
See also stackoverflow.com/questions/769731/…. – Michael Myers Jun 23 '09 at 20:35
Why the downvote? – OscarRyz Jun 23 '09 at 22:04
9  
@Oscar While it's a perfectly valid question, I can understand people being irate at using this site as a place they can copy/paste original answers from for their homework. All the fun of cheating with none of the risk! – Sean Jun 23 '09 at 22:14
12  
C/Perl/Assember/Unix professional here - I'm learning Java myself and I just googled (and found) this question because I need to keep a collection of elements for a project and wasn't entirely sure the differences, myself, so thanks for the answers below... – PP. Jun 8 '11 at 7:02
And if you want to find out in terms of performance , have a look at this question stackoverflow.com/questions/10799417/… – vsingh May 31 at 15:07

16 Answers

up vote 79 down vote accepted

List is an ordered sequence of elements whereas Set is a distinct list of elements which is unordered (thank you, Quinn Taylor).

List<E>:

An ordered collection (also known as a sequence). The user of this interface has precise control over where in the list each element is inserted. The user can access elements by their integer index (position in the list), and search for elements in the list.

Set<E>:

A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1 and e2 such that e1.equals(e2), and at most one null element. As implied by its name, this interface models the mathematical set abstraction.

share|improve this answer
6  
Also, sets by definition has no ordering. – Quinn Taylor Jun 23 '09 at 20:36
@Quinn: very good point. – Andrew Hare Jun 23 '09 at 23:50
2  
For a SortedSet, there are no two elements where compareTo() == 0, as equals is not called. – Peter Lawrey Jun 25 '09 at 17:52
2  
A Set CAN be ordered, so the first statement of this answer is misleading, even if of course a List must be choosen to enforce the Collection order – Samuel EUSTACHI Mar 6 at 11:00

Ordered lists of element (unique or not)
Conform to Java's interface named List
Can be accessed by index

  • LinkedList
  • ArrayList

Lists of unique elements:
Conform to Java's interface named Set
Can not be accessed by index

  • HashSet (unordered)
  • LinkedHashSet (ordered)
  • TreeSet (sorted by natural order or by provided comparator)

Both interfaces Set and List conform to Java's interface named Collection

share|improve this answer

A Set cannot contain duplicate elements while a List can. A List (in Java) also implies order.

share|improve this answer
  • A List is an ordered grouping of items
  • A Set is an unordered grouping of items with no duplicates allowed (usually)

Conceptually we usually refer to an unordered grouping that allows duplicates as a Bag and doesn't allow duplicates is a Set.

share|improve this answer
   
A set cannot have duplicates. – karim79 Jun 23 '09 at 20:34
Some set implementations are ordered (such as LinkedHashSet, which maintains a LinkedList behind the scenes). But the Set ADT does not have ordering. – Michael Myers Jun 23 '09 at 20:36

A set is an unordered group of distinct objects — no duplicate objects are allowed. It is generally implemented using the hash code of the objects being inserted. (Specific implementations may add ordering, but the Set interface itself does not.)

A list is an ordered group of objects which may contain duplicates. It could be implemented with an array, linked list, etc.

share|improve this answer

List

  1. Is an Ordered grouping of elements.
  2. List is used to collection of elements with duplicates.
  3. New methods are defined inside List interface.

Set

  1. Is an Unordered grouping of elements.
  2. Set is used to collection of elements without duplicates.
  3. No new methods are defined inside Set interface, so we have to use Collection interface methods only with Set subclasses.
share|improve this answer

Ordering... a list has an order, a set does not.

share|improve this answer
The Set ADT does not specifiy ordering, but some Set implementations (such as LinkedHashSet) keep insertion order. – Michael Myers Jun 23 '09 at 20:38
1  
However, the more important difference is that sets don't allow duplicates. A bag/multiset does. – Quinn Taylor Jun 23 '09 at 20:39

This might not be the answer you're looking for, but the JavaDoc of the collections classes is actually pretty descriptive. Copy/pasted:

An ordered collection (also known as a sequence). The user of this interface has precise control over where in the list each element is inserted. The user can access elements by their integer index (position in the list), and search for elements in the list.

Unlike sets, lists typically allow duplicate elements. More formally, lists typically allow pairs of elements e1 and e2 such that e1.equals(e2), and they typically allow multiple null elements if they allow null elements at all. It is not inconceivable that someone might wish to implement a list that prohibits duplicates, by throwing runtime exceptions when the user attempts to insert them, but we expect this usage to be rare.

share|improve this answer

1.List allows duplicate values and set does'nt allow duplicates

2.List maintains the order in which you inserted elements in to the list Set does'nt maintain order. 3.List is an ordered sequence of elements whereas Set is a distinct list of elements which is unordered.

share|improve this answer

All of the List classes maintain the order of insertion. They use different implementations based on performance and other characteristics (e.g. ArrayList for speed of access of a specific index, LinkedList for simply maintaining order). Since there is no key, duplicates are allowed.

The Set classes do not maintain insertion order. They may optionally impose a specific order (as with SortedSet), but typically have an implementation-defined order based on some hash function (as with HashSet). Since Sets are accessed by key, duplicates are not allowed.

share|improve this answer
Maps store objects by key, but sets store objects using a unique value related to the object, usually its hash code. (Maps may also use hash codes to check for key uniqueness, but they are not required to.) – Quinn Taylor Jun 24 '09 at 6:45

List :

List allowes dups. it is ordered. by using Array,linked list. list ex's Arraylist ,linkedlist,vector.. accessed by index.

Set:

set DO'T allowes dups. it is un-ordered. by using Hash code of objects inserted. set ex's Hashset,linkedhashset....Treeset. HashSet unordered. LinkedHashSet ordered. TreeSet sorted by natural order or by provided comparator.

share|improve this answer

Set<E> and List<E> are both used to store elements of type E. The difference is that Set is stored in unordered way and does not allow duplicate values. List is used to store elements in ordered way and it does allow duplicate values.

Set elements cannot be accessed by an index position, and List elements can be accessed with an index position.

share|improve this answer

As we are talking about the Java interfaces, why not look at the Javadoc ?!

  • A List is an ordered collection (sequence), which typically allows duplicates
  • A Set is collection that contains no duplicate elements, iteration order may be guaranteed by the implementation

There is NO mention about lack of order concerning Sets: it depends on the implementation.

share|improve this answer

List:

  1. Allowed duplicates.
  2. Ordered in grouping elements.(In other words having definite order.No need to sorted in ascending order)

Set:

  1. Not allowed duplicates.
  2. Unordered in grouping elements.(In other words having no definite order.It might or might not arranged in ascending order )
share|improve this answer

Few note worthy differences between List and Set in Java are given as following :

1) Fundamental difference between List and Set in Java is allowing duplicate elements. List in Java allows duplicates while Set doesn't allow any duplicate. If you insert duplicate in Set it will replace the older value. Any implementation of Set in Java will only contains unique elements.

2) Another significant difference between List and Set in Java is order. List is an Ordered Collection while Set is an unordered Collection. List maintains insertion order of elements, means any element which is inserted before will go on lower index than any element which is inserted after. Set in Java doesn't maintain any order. Though Set provide another alternative called SortedSet which can store Set elements in specific Sorting order defined by Comparable and Comparator methods of Objects stored in Set.

3) Popular implementation of List interface in Java includes ArrayList, Vector and LinkedList. While popular implementation of Set interface includes HashSet, TreeSet and LinkedHashSet.

Its pretty clear that if you need to maintain insertion order or object and you collection can contain duplicates than List is a way to go. On the other hand if your requirement is to maintain unique collection without any duplicates than Set is the way to go.

share|improve this answer

Here ist a clear example with groovy. i create a set and a list. then i try to store 20 randomly generated value within each list. the generated value can be in range 0 to 5

s = [] as Set
l = []

max = 5
print "random Numbers :"
20.times{
e = (int)Math.random()*max
s << e
l << e
print "$e, "
}


println "\n"
println "Set : $s "
println "list : $l

The result :

random Numbers: 4, 1, 4, 0, 1, 2, 4, 0, 0, 3, 4, 3, 2, 0, 4, 0, 1, 3, 1, 3

Set : [4, 1, 0, 2, 3]

list : [4, 1, 4, 0, 1, 2, 4, 0, 0, 3, 4, 3, 2, 0, 4, 0, 1, 3, 1, 3]

You can see that the difference is that:

  • Set does not allow duplicate values.
  • List allow duplicate values.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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