I'm creating a scoring system using a treeMap and I want to only display the top 3 results.
When the player inputs the 4th result (if it's bigger than the current smallest value) how do I make it delete the smallest value and replace it with the new value.
My code so far so sorting the scores:
Map<Integer, String> treeMap = new TreeMap<Integer, String>(new MyCopr());
treeMap.put(name1val, name1);
treeMap.put(name2val, name2);
treeMap.put(name3val, name3);
treeMap.put(tempval, tempname);
for (Map.Entry<Integer, String> entry : treeMap.entrySet()) {
playername1.append("Key : " + entry.getKey() + " Value : "
+ entry.getValue() + "\n");
}
}
class MyCopr implements Comparator<Integer> {
@Override
public int compare(Integer lhs, Integer rhs) {
return rhs.compareTo(lhs);
}
}
From here what can I do to replace the smallest value? Thanks.
I would use a set of scores (like this) -
And then use it like so ...
Which yields this (when I run it) -