What is the fundamental difference between the Set<E> and List<E> interfaces?
|
|
|
|||||||||||||||
|
|
Ordered lists of element (unique or not)
Lists of unique elements:
Both interfaces |
|||
|
|
|
A Set cannot contain duplicate elements while a List can. A List (in Java) also implies order. |
|||
|
|
Conceptually we usually refer to an unordered grouping that allows duplicates as a Bag and doesn't allow duplicates is a Set. |
|||||||
|
|
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. |
|||
|
|
|
List
Set
|
|||
|
|
|
Ordering... a list has an order, a set does not. |
|||||||
|
|
This might not be the answer you're looking for, but the JavaDoc of the collections classes is actually pretty descriptive. Copy/pasted:
|
|||
|
|
|
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. |
|||
|
|
|
All of the The |
|||
|
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. |
|||
|
|
|
|
||||
|
|
|
As we are talking about the Java interfaces, why not look at the Javadoc ?!
There is NO mention about lack of order concerning Sets: it depends on the implementation. |
|||
|
|
|
List:
Set:
|
||||
|
|
|
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. |
|||
|
|
|
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
The result : random Numbers: Set : list : You can see that the difference is that:
|
||||
|
|
