Package edu.rit.util
Class Searching.Integer
java.lang.Object
edu.rit.util.Searching.Integer
- Enclosing class:
Searching
Class Searching.Integer is the base class for a helper object used to
search an array of type
int[]
.- Version:
- 22-Nov-2011
- Author:
- Alan Kaminsky
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
compare
(int a, int b) Compare two elements according to the desired ordering criterion.
-
Constructor Details
-
Integer
public Integer()
-
-
Method Details
-
compare
public int compare(int a, int b) Compare two elements according to the desired ordering criterion.The default implementation compares
a
andb
using ascending order. A subclass can override this method to obtain a different ordering criterion; for example, descending order.- Parameters:
a
- First element being compared.b
- Second element being compared.- Returns:
- A number less than, equal to, or greater than 0 if
a
comes before, is the same as, or comes afterb
, respectively.
-