Android Utililty Methods List Permutation

List of utility methods to do List Permutation

Description

The list of methods to do List Permutation are organized into topic(s).

Method

booleangetNextPermutation( List list)
Get the next permutation.
final int first = 0;
final int last = list.size();
if (first == last)
    return false;
int i = first;
++i;
if (i == last)
    return false;
...