Collections in Java - Javatpoint
Collections in Java - Javatpoint
Collections in Java
The Collection in Java is a framework that provides an architecture to store and manipulate the group of objects.
Java Collections can achieve all the operations that you perform on a data such as searching, sorting, insertion, manipulation,
and deletion.
Java Collection means a single unit of objects. Java Collection framework provides many interfaces (Set, List, Queue, Deque)
and classes (ArrayList, Vector, LinkedList, PriorityQueue, HashSet, LinkedHashSet, TreeSet).
https://www.javatpoint.com/collections-in-java 1/15
5/17/2021 Collections in Java - javatpoint
It is optional.
The Collection framework represents a unified architecture for storing and manipulating a group of objects. It has:
2. Algorithm
Do You Know?
What is the difference between ArrayList and LinkedList classes in collection framework?
What is the difference between ArrayList and Vector classes in collection framework?
What is the difference between HashSet and HashMap classes in collection framework?
What is the difference between Iterator and Enumeration interface in collection framework?
How can we sort the elements of an object? What is the difference between Comparable and Comparator interfaces?
https://www.javatpoint.com/collections-in-java 2/15
5/17/2021 Collections in Java - javatpoint
2 public boolean addAll(Collection<? It is used to insert the specified collection elements in the invoking
extends E> c) collection.
4 public boolean removeAll(Collection<? It is used to delete all the elements of the specified collection from the
> c) invoking collection.
5 default boolean removeIf(Predicate<? It is used to delete all the elements of the collection that satisfy the
super E> filter) specified predicate.
6 public boolean retainAll(Collection<?> It is used to delete all the elements of invoking collection except the
c) specified collection. ⇧
https://www.javatpoint.com/collections-in-java 3/15
5/17/2021 Collections in Java - javatpoint
7 public int size() It returns the total number of elements in the collection.
8 public void clear() It removes the total number of elements from the collection.
13 public <T> T[] toArray(T[] a) It converts collection into array. Here, the runtime type of the returned
array is that of the specified array.
15 default Stream<E> parallelStream() It returns a possibly parallel Stream with the collection as its source.
16 default Stream<E> stream() It returns a sequential Stream with the collection as its source.
17 default Spliterator<E> spliterator() It generates a Spliterator over the specified elements in the collection.
19 public int hashCode() It returns the hash code number of the collection.
Iterator interface
Iterator interface provides the facility of iterating the elements in a forward direction only.
There are only three methods in the Iterator interface. They are:
1 public boolean hasNext() It returns true if the iterator has more elements otherwise it returns false.
2 public Object next() It returns the element and moves the cursor pointer to the next element.
3 public void remove() It removes the last elements returned by the iterator. It is less used.
Iterable Interface
The Iterable interface is the root interface for all the collection classes. The Collection interface extends the Iterable interface
and therefore all the subclasses of Collection interface also implement the Iterable interface.
Iterator<T> iterator()
⇧
https://www.javatpoint.com/collections-in-java 4/15
5/17/2021 Collections in Java - javatpoint
Collection Interface
The Collection interface is the interface which is implemented by all the classes in the collection framework. It declares the
methods that every collection will have. In other words, we can say that the Collection interface builds the foundation on which
the collection framework depends.
Some of the methods of Collection interface are Boolean add ( Object obj), Boolean addAll ( Collection c), void clear(), etc.
which are implemented by all the subclasses of Collection interface.
List Interface
List interface is the child interface of Collection interface. It inhibits a list type data structure in which we can store the ordered
collection of objects. It can have duplicate values.
List interface is implemented by the classes ArrayList, LinkedList, Vector, and Stack.
There are various methods in List interface that can be used to insert, delete, and access the elements from the list.
The classes that implement the List interface are given below.
ArrayList
The ArrayList class implements the List interface. It uses a dynamic array to store the duplicate element of different data
types. The ArrayList class maintains the insertion order and is non-synchronized. The elements stored in the ArrayList class
can be randomly accessed. Consider the following example.
import java.util.*;
class TestJavaCollection1{
list.add("Vijay");
list.add("Ravi");
list.add("Ajay");
Iterator itr=list.iterator(); ⇧
https://www.javatpoint.com/collections-in-java 5/15
5/17/2021 Collections in Java - javatpoint
while(itr.hasNext()){
System.out.println(itr.next());
Output:
Ravi
Vijay
Ravi
Ajay
LinkedList
LinkedList implements the Collection interface. It uses a doubly linked list internally to store the elements. It can store the
duplicate elements. It maintains the insertion order and is not synchronized. In LinkedList, the manipulation is fast because no
shifting is required.
import java.util.*;
al.add("Ravi");
al.add("Vijay");
al.add("Ravi");
al.add("Ajay");
Iterator<String> itr=al.iterator();
while(itr.hasNext()){
System.out.println(itr.next());
Output:
Ravi
Vijay
Ravi
Ajay
Vector
Vector uses a dynamic array to store the data elements. It is similar to ArrayList. However, It is synchronized and contains
many methods that are not the part of Collection framework. ⇧
https://www.javatpoint.com/collections-in-java 6/15
5/17/2021 Collections in Java - javatpoint
import java.util.*;
v.add("Ayush");
v.add("Amit");
v.add("Ashish");
v.add("Garima");
Iterator<String> itr=v.iterator();
while(itr.hasNext()){
System.out.println(itr.next());
Output:
Ayush
Amit
Ashish
Garima
Stack
The stack is the subclass of Vector. It implements the last-in-first-out data structure, i.e., Stack. The stack contains all of the
methods of Vector class and also provides its methods like boolean push(), boolean peek(), boolean push(object o), which
defines its properties.
import java.util.*;
stack.push("Ayush");
stack.push("Garvit");
stack.push("Amit");
stack.push("Ashish");
stack.push("Garima");
stack.pop();
Iterator<String> itr=stack.iterator();
while(itr.hasNext()){
System.out.println(itr.next());
} ⇧
https://www.javatpoint.com/collections-in-java 7/15
5/17/2021 Collections in Java - javatpoint
Output:
Ayush
Garvit
Amit
Ashish
Queue Interface
Queue interface maintains the first-in-first-out order. It can be defined as an ordered list that is used to hold the elements
which are about to be processed. There are various classes like PriorityQueue, Deque, and ArrayDeque which implements the
Queue interface.
There are various classes that implement the Queue interface, some of them are given below.
PriorityQueue
The PriorityQueue class implements the Queue interface. It holds the elements or objects which are to be processed by their
priorities. PriorityQueue doesn't allow null values to be stored in the queue.
import java.util.*;
queue.add("Amit Sharma");
queue.add("Vijay Raj");
queue.add("JaiShankar");
queue.add("Raj");
System.out.println("head:"+queue.element());
System.out.println("head:"+queue.peek());
Iterator itr=queue.iterator();
while(itr.hasNext()){
System.out.println(itr.next());
queue.remove();
queue.poll();
⇧
https://www.javatpoint.com/collections-in-java 8/15
5/17/2021 Collections in Java - javatpoint
Iterator<String> itr2=queue.iterator();
while(itr2.hasNext()){
System.out.println(itr2.next());
Output:
head:Amit Sharma
head:Amit Sharma
iterating the queue elements:
Amit Sharma
Raj
JaiShankar
Vijay Raj
after removing two elements:
Raj
Vijay Raj
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.
ArrayDeque
ArrayDeque class implements the Deque interface. It facilitates us to use the Deque. Unlike queue, we can add or delete the
elements from both the ends.
ArrayDeque is faster than ArrayList and Stack and has no capacity restrictions.
import java.util.*;
deque.add("Gautam");
deque.add("Karan");
deque.add("Ajay");
//Traversing elements
⇧
for (String str : deque) {
https://www.javatpoint.com/collections-in-java 9/15
5/17/2021 Collections in Java - javatpoint
System.out.println(str);
Output:
Gautam
Karan
Ajay
Set Interface
Set Interface in Java is present in java.util package. It extends the Collection interface. It represents the unordered set of
elements which doesn't allow us to store the duplicate items. We can store at most one null value in Set. Set is implemented
by HashSet, LinkedHashSet, and TreeSet.
HashSet
HashSet class implements Set Interface. It represents the collection that uses a hash table for storage. Hashing is used to
store the elements in the HashSet. It contains unique items.
import java.util.*;
set.add("Ravi");
set.add("Vijay");
set.add("Ravi");
set.add("Ajay");
//Traversing elements
Iterator<String> itr=set.iterator();
while(itr.hasNext()){
System.out.println(itr.next());
⇧
Output:
https://www.javatpoint.com/collections-in-java 10/15
5/17/2021 Collections in Java - javatpoint
Vijay
Ravi
Ajay
LinkedHashSet
LinkedHashSet class represents the LinkedList implementation of Set Interface. It extends the HashSet class and implements
Set interface. Like HashSet, It also contains unique elements. It maintains the insertion order and permits null elements.
import java.util.*;
set.add("Ravi");
set.add("Vijay");
set.add("Ravi");
set.add("Ajay");
Iterator<String> itr=set.iterator();
while(itr.hasNext()){
System.out.println(itr.next());
Output:
Ravi
Vijay
Ajay
SortedSet Interface
SortedSet is the alternate of Set interface that provides a total ordering on its elements. The elements of the SortedSet are
arranged in the increasing (ascending) order. The SortedSet provides the additional methods that inhibit the natural ordering
of the elements.
TreeSet
Java TreeSet class implements the Set interface that uses a tree for storage. Like HashSet, TreeSet also contains unique
elements. However, the access and retrieval time of TreeSet is quite fast. The elements in TreeSet stored in ascending order.
https://www.javatpoint.com/collections-in-java 11/15
5/17/2021 Collections in Java - javatpoint
import java.util.*;
set.add("Ravi");
set.add("Vijay");
set.add("Ravi");
set.add("Ajay");
//traversing elements
Iterator<String> itr=set.iterator();
while(itr.hasNext()){
System.out.println(itr.next());
Output:
Ajay
Ravi
Vijay
1. ArrayList class
2. LinkedList class
3. List interface
4. HashSet class
5. LinkedHashSet class
6. TreeSet class
7. PriorityQueue class
8. Map interface
9. HashMap class
13. Sorting
https://www.javatpoint.com/collections-in-java 12/15
5/17/2021 Collections in Java - javatpoint
← Prev Next →
Preparation
Company
Interview
Questions
⇧
https://www.javatpoint.com/collections-in-java 13/15
5/17/2021 Collections in Java - javatpoint
Company
Trending Technologies
B.Tech / MCA
https://www.javatpoint.com/collections-in-java 14/15
5/17/2021 Collections in Java - javatpoint
https://www.javatpoint.com/collections-in-java 15/15