| Author |
Match the most closest number
|
jay lai
Ranch Hand
Joined: Apr 04, 2002
Posts: 180
|
|
I have a list of number, types is Double. I have a method to pass in the Double as params. I want to compare the input params with each of the values in the collection, if it matches the most closest value then return that value from the collection.
Collections<Double> list = new ArrayList<Double>();
list.add(89000.00);
list.add(78900.00);
list.add(56999.12);
so the method is like this
private Double getTheMatch(Double param) {
pseudo code:
for (Double d : list) {
if (param Match list.getNumber) {
return list.getNumber;
}
}
}
so if passing 88908.00 --> value will return will be 89000.00 , the most match value from the list
What API java class should I use? Thanks
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12907
|
|
You can use a NavigableSet for this. Class TreeSet is an implementation of class NavigableSet. Example:
Note that the method ceiling returns the least element in the set greater than or equal to the given element (or null if there is no such element). There are other methods in the interface, such as floor, higher and lower. You'll have to read the documentation and decide which of these is appropriate for your application.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: Match the most closest number
|
|
|