Let’s see how to get unique values from ArrayList. Convert ArrayList to HashSet to insert duplicate values in ArrayList but on the other hand, HashSet is not allowing to insert any duplicate value. While converting ArrayList to HashSet all the duplicate values are removed and as a result, unique values are obtained.
Example:
INPUT : ArrayList = [a, b, c, b, d, a, c]
OUTPUT: Unique = [a, b, c, d]
INPUT : ArrayList = [1, 5, 2, 4, 3, 4, 5]
OUTPUT: Unique = [1, 2, 3, 4, 5]
Approach:
- Create a ArrarList.
- Add elements in ArrayList.
- Create HashSet and pass in HashSet constructor.
- Print HashSet object.
Below is the implementation of the above approach:
Java
import java.util.ArrayList;
import java.util.HashSet;
public class GFG {
public static void main(String[] args)
{
ArrayList<String> ArrList = new ArrayList<String>();
ArrList.add( "a" );
ArrList.add( "b" );
ArrList.add( "c" );
ArrList.add( "b" );
ArrList.add( "d" );
ArrList.add( "a" );
ArrList.add( "c" );
System.out.println( "Original ArrayList is : "
+ ArrList);
HashSet<String> hset = new HashSet<String>(ArrList);
System.out.println( "ArrayList Unique Values is : "
+ hset);
}
}
|
Output
Original ArrayList is : [a, b, c, b, d, a, c]
ArrayList Unique Values is : [a, b, c, d]
Time Complexity: O(n), where n is the length of the original ArrayList.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
11 Dec, 2020
Like Article
Save Article