What is the difference between set and list?
Answers were Sorted based on User's Feedback
Answer / janet
set stores elements in an unordered way but does not
contain duplicate elements,where as ist stores elements in
an ordered way but may contain duplicate elements.
Is This Answer Correct ? | 200 Yes | 14 No |
set-->
when uniqueness is required you need to implement set.
e.g.
HashSet(unOrd,unSort) Fast access, assures no duplicates,
provides no ordering.
LinkedHashSet(Ord,unSort)No duplicates; iterates by
insertion order.
TreeSet(ascending,naturalord)No duplicates ; iterates in
sorted order.
list-->
when ordered list is required you need to implement list.
e.g.
ArrayList(Ord,unSort)Fast iteration and fast random access.
Vector(syncronized)
LinkedList()Good for adding elements to the ends, i.e.,
stacks and queues.
Is This Answer Correct ? | 91 Yes | 7 No |
Answer / may
set stores elements in an unordered way but does not
contain duplicate elements,where as it stores elements in
an ordered way but may contain duplicate elements.
Is This Answer Correct ? | 37 Yes | 4 No |
Answer / krishnareddym. a
When we required uniqueness then we can use set and set
does not allow any duplications but list may contain
duplications set and list both extends collection interface...
Is This Answer Correct ? | 22 Yes | 6 No |
Answer / vinod varma
set is an interface which doesnot allows the duplicate values
where as list is also an interface which allows the
duplicate values and we may not guarantee the order of
elements in set
but we can get the elements from list according to their
indexes. we may not insert the elements into set at the
specific index, but possible in list.
Is This Answer Correct ? | 11 Yes | 2 No |
What is a variable simple definition?
Define how can we find the actual size of an object on the heap?
how to handle exceptions in ejb?
What is the advantage of preparedstatement over statement?
Is it possible for a yielded thread to get chance for its execution again?
What is the function of log?
Can we extend the String class?
How many types of interfaces are there?
If A Class Is Declared Without Any Access Modifiers, Where May The Class Be Accessed?
What is the meaning of variables in research?
What is visibility mode?
What is data member in java?