This is a code that I got from internet.
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
public class Test<T> {
public static void main(String args[]) {
Test<Integer> obj = new Test<Integer>();
Collection<Integer> input = new ArrayList<Integer>();
for (int i = 0; i < 14; i++) {
input.add(i);
}
Collection<List<Integer>> output = obj.permute(input);
int k = 0;
Set<List<Integer>> pnr = null;
for (int i = 0; i <= input.size(); i++)
{
pnr = new HashSet<List<Integer>>();
for(List<Integer> integers : output){
pnr.add(integers.subList(i, integers.size()));
}
k = input.size()- i;
System.out.println("P("+input.size()+","+k+") :"+
"Count ("+pnr.size()+") :- "+pnr);
}
}
public Collection<List<T>> permute(Collection<T> input) {
Collection<List<T>> output = new ArrayList<List<T>>();
if (input.isEmpty()) {
output.add(new ArrayList<T>());
return output;
}
List<T> list = new ArrayList<T>(input);
T head = list.get(0);
List<T> rest = list.subList(1, list.size());
for (List<T> permutations : permute(rest)) {
List<List<T>> subLists = new ArrayList<List<T>>();
for (int i = 0; i <= permutations.size(); i++) {
List<T> subList = new ArrayList<T>();
subList.addAll(permutations);
subList.add(i, head);
subLists.add(subList);
}
output.addAll(subLists);
}
return output;
}
}
When I tried executing it, it took long time for the elements of count 7. But when I tried for 14, I got below exception.
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOf(Arrays.java:2219) at java.util.ArrayList.toArray(ArrayList.java:329) at java.util.ArrayList.addAll(ArrayList.java:530) at Test.permute(Test.java:45) at Test.permute(Test.java:41) at Test.permute(Test.java:41) at Test.permute(Test.java:41) at Test.main(Test.java:18) Java Result: 1
My system configuration is 3rd Gen i5, 8GB RAM. While the program was running, CPU consumption was 98-100%.
So my question is:
- Is there any jar available for doing permutation efficiently?
- What can I do in this code to improve the performance?
My requirement:
- Need to permute a group (ie, more than 30) of integer values.
Downvoters please comment reason