Java Collection Framework
Java Collection Framework
COLLECTION
COLLECTIONCC XX
FRAMEWORK
Collections
The Collection in Java is a framework that provides
an architecture to store and manipulate the group of
objects.
Key Implementations:
ArrayList: A resizable array implementation.
LinkedList: A doubly-linked list implementation.
Vector: A synchronized resizable array
implementation.
Key Implementations:
HashSet: A hash table-based implementation.
LinkedHashSet: A hash table and linked list
implementation, with predictable iteration order.
TreeSet: A NavigableSet implementation based
on a TreeMap.
Set Interface
Key Methods:
boolean add(E e): Adds the specified element to
the set if it is not already present.
boolean remove(Object o): Removes the
specified element from the set if it is present.
boolean contains(Object o): Returns true if the
set contains the specified element.
int size(): Returns the number of elements in the
set.
void clear(): Removes all elements from the set.
HashSet
HashSet is a hash table-based implementation of
the Set interface.
It makes no guarantees about the iteration order
of the set; in particular, it does not guarantee that
the order will remain constant over time.
It permits the null element.
LinkedHashSet
LinkedHashSet is an implementation of the Set
interface that uses a hash table and a doubly
linked list to maintain the insertion order of
elements.
It maintains a linked list of the entries in the set,
in the order in which they were inserted.
TreeSet
TreeSet is a NavigableSet implementation based
on a TreeMap.
The elements in a TreeSet are sorted according to
their natural ordering or by a comparator
provided at set creation time.
It does not permit null elements.
Queue Interface
The Queue interface extends the Collection
interface.
It represents a collection designed for holding
elements prior to processing.
Queues typically, but do not necessarily, order
elements in a FIFO (first-in-first-out) manner.
Queue Interface
Key Methods:
boolean add(E e): Inserts the specified element
into the queue, returning true if successful.
boolean offer(E e): Inserts the specified element
into the queue, returning false if not possible.
E remove(): Retrieves and removes the head of
the queue.
E poll(): Retrieves and removes the head of the
queue, returning null if the queue is empty.
E element(): Retrieves, but does not remove, the
head of the queue.
E peek(): Retrieves, but does not remove, the
head of the queue, returning null if the queue is
empty.
Priority Queue
PriorityQueue is an unbounded priority queue
based on a priority heap.
Elements of the priority queue are ordered
according to their natural ordering, or by a
Comparator provided at queue construction
time, depending on which constructor is used.
It does not permit null elements.
Priority Queue
Deque Interface
Deque interface extends the Queue interface. In
Deque, we can remove and add the elements from
both the side. Deque stands for a double-ended
queue which enables us to perform the operations at
both the ends.
Array Deque
ArrayDeque is a resizable-array implementation
of the Deque interface.
It has no capacity restrictions and provides
better performance than LinkedList for stack and
queue operations.
It does not permit null elements.
Array Deque
Thank You