I have a class like that:
public class Zern extends Something{
private int costA;
private int costB;
public int getcostA() {
return costA;
}
public void setcostA(int costA) {
this.costA = costA;
}
public int getcostB() {
return costB;
}
public void setcostB(int costB) {
this.costB = costB;
}
}
I have a list that holds that kind of objects:
private List<Zern> zerns = new ArrayList<Zern>(MAX_ZERN_SIZE);
I will add new objects to my list however I always want to have a ordered list according to cost a and if there is an object at list which has the same cost with my object that I want to add I want to add that object according to their costB.
I mean:
Index of objects at list 0 1 2 3 4 5
CostA 10 15 22 22 25 36
CostB 26 12 17 19 23 44
If I want to add an object that has a costA 22 and costB 18,
it will locate at index 3.
How can I do it effectively (because I will add an object to a sorted list so it means that I can use binary search - if it is possible I want to find a solution according to that) with Comparator or something like that?