Java Set is a part of java.util package and extends java.util.Collection interface. It does not allow the use of duplicate elements and at max can accommodate only one null element.
The List is a child interface of Collection. It is an ordered collection of objects in which duplicate values can be stored. Since List preserves the insertion order, it allows positional access and insertion of elements. List Interface is implemented by ArrayList, LinkedList, Vector and Stack classes.
Below are methods to convert Set to List in Java.
- Brute Force or Naive method: This method includes creating an empty list and add every element of the set to it.
Algorithm:
- Get the Set to be converted.
- Create an empty list
- Push each element in the set into the list
- Return the formed List
Program:
// Java Program to convert
// Set to List in Java 8
Â
Âimport
java.util.*;
import
java.util.stream.*;
Â
Âclass
GFG {
Â
ÂÂ Â Â Â
// Generic function to convert set to list
   Â
public
static
<T> List<T> convertSetToList(Set<T> set)
   Â
{
       Â
// create an empty list
       Â
List<T> list =
new
ArrayList<>();
Â
ÂÂ Â Â Â Â Â Â Â
// push each element in the set into the list
       Â
for
(T t : set)
           Â
list.add(t);
Â
ÂÂ Â Â Â Â Â Â Â
// return the list
       Â
return
list;
   Â
}
Â
ÂÂ Â Â Â
public
static
void
main(String args[])
   Â
{
Â
ÂÂ Â Â Â Â Â Â Â
// Create a Set using HashSet
       Â
Set<String> hash_Set =
new
HashSet<String>();
Â
ÂÂ Â Â Â Â Â Â Â
// Add elements to set
       Â
hash_Set.add(
"Geeks"
);
       Â
hash_Set.add(
"For"
);
       Â
hash_Set.add(
"Geeks"
);
       Â
hash_Set.add(
"Example"
);
       Â
hash_Set.add(
"Set"
);
Â
ÂÂ Â Â Â Â Â Â Â
// Print the Set
       Â
System.out.println(
"Set: "
+ hash_Set);
Â
ÂÂ Â Â Â Â Â Â Â
// construct a new List from Set
       Â
List<String> list = convertSetToList(hash_Set);
Â
ÂÂ Â Â Â Â Â Â Â
// Print the List
       Â
System.out.println(
"List: "
+ list);
   Â
}
}
Output:Set: [Set, Example, Geeks, For] List: [Set, Example, Geeks, For]
- With help of Constructor: Collections in Java have a constructor in which the direct set can be passed to create a List from it.
Algorithm:
- Get the Set to be converted.
- Create a list by passing the set as parameter to the constructor.
- Return the formed List
Program:
// Java Program to convert
// Set to List in Java 8
Â
Âimport
java.util.*;
import
java.util.stream.*;
Â
Âclass
GFG {
Â
ÂÂ Â Â Â
// Generic function to convert set to list
   Â
public
static
<T> List<T> convertSetToList(Set<T> set)
   Â
{
       Â
// create a list from Set
       Â
List<T> list =
new
ArrayList<>(set);
Â
ÂÂ Â Â Â Â Â Â Â
// return the list
       Â
return
list;
   Â
}
Â
ÂÂ Â Â Â
public
static
void
main(String args[])
   Â
{
Â
ÂÂ Â Â Â Â Â Â Â
// Create a Set using HashSet
       Â
Set<String> hash_Set =
new
HashSet<String>();
Â
ÂÂ Â Â Â Â Â Â Â
// Add elements to set
       Â
hash_Set.add(
"Geeks"
);
       Â
hash_Set.add(
"For"
);
       Â
hash_Set.add(
"Geeks"
);
       Â
hash_Set.add(
"Example"
);
       Â
hash_Set.add(
"Set"
);
Â
ÂÂ Â Â Â Â Â Â Â
// Print the Set
       Â
System.out.println(
"Set: "
+ hash_Set);
Â
ÂÂ Â Â Â Â Â Â Â
// construct a new List from Set
       Â
List<String> list = convertSetToList(hash_Set);
Â
ÂÂ Â Â Â Â Â Â Â
// Print the List
       Â
System.out.println(
"List: "
+ list);
   Â
}
}
Output:Set: [Set, Example, Geeks, For] List: [Set, Example, Geeks, For]
- Using Java 8 Stream: In Java 8, Stream can be used convert a set to a list by converting the set to a sequential Stream using Set.stream() and using a Collector to collect the input elements into a new List.
Algorithm:
- Get the HashMap to be converted.
- Create stream from the Set
- Convert the set to list and collect it
- Return the collected List
Program:
// Java Program to convert
// HashMap to TreeMap in Java 8
Â
Âimport
java.util.*;
import
java.util.stream.*;
Â
Âclass
GFG {
Â
ÂÂ Â Â Â
// Generic function to convert set to list
   Â
public
static
<T> List<T> convertSetToList(Set<T> set)
   Â
{
       Â
// create a list from Set
       Â
return
set
Â
ÂÂ Â Â Â Â Â Â Â Â Â Â Â
// Create stream from the Set
           Â
.stream()
Â
ÂÂ Â Â Â Â Â Â Â Â Â Â Â
// Convert the set to list and collect it
           Â
.collect(Collectors.toList());
   Â
}
Â
ÂÂ Â Â Â
public
static
void
main(String args[])
   Â
{
Â
ÂÂ Â Â Â Â Â Â Â
// Create a Set using HashSet
       Â
Set<String> hash_Set =
new
HashSet<String>();
Â
ÂÂ Â Â Â Â Â Â Â
// Add elements to set
       Â
hash_Set.add(
"Geeks"
);
       Â
hash_Set.add(
"For"
);
       Â
hash_Set.add(
"Geeks"
);
       Â
hash_Set.add(
"Example"
);
       Â
hash_Set.add(
"Set"
);
Â
ÂÂ Â Â Â Â Â Â Â
// Print the Set
       Â
System.out.println(
"Set: "
+ hash_Set);
Â
ÂÂ Â Â Â Â Â Â Â
// construct a new List from Set
       Â
List<String> list = convertSetToList(hash_Set);
Â
ÂÂ Â Â Â Â Â Â Â
// Print the List
       Â
System.out.println(
"List: "
+ list);
   Â
}
}
Output:Set: [Set, Example, Geeks, For] List: [Set, Example, Geeks, For]
- Using Guava Library List.newArrayList(set): Lists.newArrayList(set) creates a mutable ArrayList instance containing the elements of the specified set.
Algorithm:
- Get the Set to be converted.
- Create a new List using Lists.newArrayList() by passing the set as parameter to this function of Guava library
- Return the formed List
Program:
// Java Program to convert
// HashMap to TreeMap in Java 8
Â
Âimport
java.util.*;
import
java.util.stream.*;
Â
Âclass
GFG {
Â
ÂÂ Â Â Â
// Generic function to convert set to list
   Â
public
static
<T> List<T> convertSetToList(Set<T> set)
   Â
{
       Â
// create a list from Set
       Â
return
Lists.newArrayList(set);
   Â
}
Â
ÂÂ Â Â Â
public
static
void
main(String args[])
   Â
{
Â
ÂÂ Â Â Â Â Â Â Â
// Create a Set using HashSet
       Â
Set<String> hash_Set =
new
HashSet<String>();
Â
ÂÂ Â Â Â Â Â Â Â
// Add elements to set
       Â
hash_Set.add(
"Geeks"
);
       Â
hash_Set.add(
"For"
);
       Â
hash_Set.add(
"Geeks"
);
       Â
hash_Set.add(
"Example"
);
       Â
hash_Set.add(
"Set"
);
Â
ÂÂ Â Â Â Â Â Â Â
// Print the Set
       Â
System.out.println(
"Set: "
+ hash_Set);
Â
ÂÂ Â Â Â Â Â Â Â
// construct a new List from Set
       Â
List<String> list = convertSetToList(hash_Set);
Â
ÂÂ Â Â Â Â Â Â Â
// Print the List
       Â
System.out.println(
"List: "
+ list);
   Â
}
}
Output:
Set: [Set, Example, Geeks, For] List: [Set, Example, Geeks, For]