I have a list of unsorted strings, where entries are one of {A,B,C,D}
:
List<String> strings = new ArrayList<>(Arrays.asList("A","C","B","D","D","A","B","C","A","D","B","D","A","C"));
I need to sort / (group) them in a custom order taking one item at time to have a result like:
[A, B, C, D, A, B, C, D, A, B, C, D, A, D]
I am struggling to come up with an idea how to do so. Any help?
I have tried to use a custom Comparator<String>
but not able to implement the logic that first A < second A
and first D < second A
.
Also tried Stream. groupingBy
:
Collection<List<String>> coll = strings.stream().collect(Collectors.groupingBy(s -> s)).values();
which groups same strings into groups.
[[A, A, A, A], [B, B, B], [C, C, C], [D, D, D, D]]
But I am not sure how to take one element at a time from above lists till no elements are available. Does anyone have any approach on how to proceed here? Need a hint in the right direction.
Building a whole new list could lead to some other solutions, for example:
With
strings
being the input list andordered
the output.