A
- key of the hashmap, for example a Value-objectpublic class ScoreKeeper<A>
extends java.lang.Object
implements java.util.Comparator<A>, java.io.Serializable
Modifier and Type | Field and Description |
---|---|
protected java.util.Map<A,java.lang.Integer> |
m
Map of objects and their score
|
protected int |
max
The highest score in the map
|
protected int |
total
The sum of all scores in the map
|
Constructor and Description |
---|
ScoreKeeper()
Creates a ScoreKeeper object by initializing the hashmap.
|
ScoreKeeper(ScoreKeeper<A> sk)
Clones the given scorekeeper-object.
|
Modifier and Type | Method and Description |
---|---|
int |
compare(A o1,
A o2)
Comparator to compare the score of two objects.
|
java.util.Set<A> |
getElements()
Returns the objects from which the score is registered.
|
int |
getMaxValue()
Returns the highest score in the map.
|
double |
getNormalizedScore(A a)
Returns the normalized score of the given object.
|
double |
getRelativeScore(A a)
Returns the relative score of a given object.
|
int |
getScore(A a)
Returns the score of the given object.
|
java.util.TreeMap<A,java.lang.Integer> |
getSortedCopy() |
int |
getTotal()
Returns the sum of all scores.
|
void |
score(A a)
Adds one to the score of the given object.
|
void |
score(A a,
int score)
Method used to add a given score to a given object.
|
java.lang.String |
toMathematicaListPlot()
Returns a Mathematica list plot of the map.
|
java.lang.String |
toString() |
protected java.util.Map<A,java.lang.Integer> m
protected int max
protected int total
public ScoreKeeper()
public ScoreKeeper(ScoreKeeper<A> sk)
sk
- object keeper which is cloned.public void score(A a)
a
- object to which one must be added to its score.public void score(A a, int score)
a
- object to which the given score must be added.score
- to be added to the object.public int getScore(A a)
a
- object from which the score must be returned.public double getNormalizedScore(A a)
a
- the object from which the score is requested.public double getRelativeScore(A a)
a
- object from which the score must be returnedpublic int compare(A o1, A o2)
compare
in interface java.util.Comparator<A>
public java.lang.String toString()
toString
in class java.lang.Object
public java.util.TreeMap<A,java.lang.Integer> getSortedCopy()
public int getMaxValue()
public int getTotal()
public java.util.Set<A> getElements()
public java.lang.String toMathematicaListPlot()