Skip to content
Advertisement

Sorting based on order mentioned in a static map using java

How to sort a list of strings based on order mentioned in static map having item of list as key.

List={“AU”,”I”,”U”, “O”, “A1”}

Need to sort the above list of string using the below map which has equivalent key and order in which sort has to be done.

JavaScript

How can this be done?

Advertisement

Answer

Using custom comparator which uses this map:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement