show/hide this revision's text 2 added answers

I don't know how much of a beginner you are and what other languages you know, but in my opinion if you don't really know the java.util package you are in trouble. So my questions would be things like:

  1. What are the major differences between LinkedList, ArrayList, Vector and arrays?
  2. When would you use an ArrayList and when a Set?
  3. What are the differences between HashMap and TreeMap and when would you use each of them?

Answers:

  1. Arrays can't grow, so are fundamental building blocks. If you are writing your own data structures and you really need constant factor memory or CPU performance increases they could be useful. ArrayList and Vector are essentially the same except Vector is synchronized. You will nearly always be better using ArrayList, and if you want synchronisation think about it at a higher level. ArrayList is like an array except that it has the benefits of being able to grow, and it can be made Generic for extra type safety. LinkedList is a specialised data structure you won't use as often but can be useful for Queues and so on.
  2. You would use a Set when you don't want duplicate elements but ordering is unimportant. You would use an ArrayList when ordering is important and you want duplicate elements. If you care about Ordering and duplicates then LinkedHashSet is an option.
  3. TreeMap is Ordered, but has slightly slower O(ln n) access. HashMap is unordered but is usually slightly quicker. TreeMap requires a comparison or for elements to be Comparable. HashMap is probably your default choice.
show/hide this revision's text 1

I don't know how much of a beginner you are and what other languages you know, but in my opinion if you don't really know the java.util package you are in trouble. So my questions would be things like:

What are the major differences between LinkedList, ArrayList, Vector and arrays? When would you use an ArrayList and when a Set? What are the differences between HashMap and TreeMap and when would you use each of them?

    Post Made Community Wiki by Community