I need to sort a list of Person objects(List<Person>, where each Person object has few attributes like id(unique), name, age… etc).
The sorting order is based on another list. That list contains a set of Person id's (A List<String> which is already sorted).
What is the best way to order the List<Person> in the same order as the list of id's using Kotlin or Java.
Example:
List Person {
(“ID1”,”PERSON1”,22,..), (“ID-2”,”PERSON2”,20,..) ), (“ID-3”,”PERSON3”,19,..),…..
}
Ordered Id List :
List of ID {(“ID2”), (“ID1”),(”ID3”)….}
Sorted Person list should be:
List PERSON {
(“ID-2”,”PERSON 2”,20,..) ), (“ID1”,”PERSON 2”,22,..), (“ID-3”,”PERSON 2”,19,..),…..
}
If the Person list contains any id's which are not mentioned in the id list then those values should be at the end of the sorted list.
Edited: This is my current way in Java. I am hoping for a better way than this:
public static List<Person> getSortList(List <Person> unsortedList, List<String> orderList){
if(unsortedList!=null && !unsortedList.isEmpty() && orderList!=null && !orderList.isEmpty()){
List sortedList = new ArrayList<OpenHABWidget>();
for(String id : orderList){
Person found= getPersonIfFound(unsortedList, id); // search for the item on the list by ID
if(found!=null)sortedList.add(found); // if found add to sorted list
unsortedList.remove(found); // remove added item
}
sortedList.addAll(unsortedList); // append the reaming items on the unsorted list to new sorted list
return sortedList;
}
else{
return unsortedList;
}
}
public static Person getPersonIfFound(List <Person> list, String key){
for(Person person : list){
if(person.getId().equals(key)){
return person;
}
}
return null;
}
Personto store your persons.Map<Integer, Person>Then use your already sorted list of IDs as an index.