This code example use the Collections.binarySearch()
to search an specified object inside a specified collections. Prior to calling the binarySearch()
method we need to sort the elements of the collection. If the object is not sorted according to their natural order the search result will be undefined.
package org.kodejava.util;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Collections;
import java.text.DateFormatSymbols;
public class CollectionSearch {
public static void main(String[] args) {
DateFormatSymbols dfs = new DateFormatSymbols();
LinkedList<String> monthList =
new LinkedList<>(Arrays.asList(dfs.getMonths()));
// Sort the collection elements
Collections.sort(monthList);
System.out.println("Months = " + monthList);
// Get the position of November inside the monthList. It returns a positive
// value if the item found in the monthList.
int index = Collections.binarySearch(monthList, "November");
if (index > 0) {
System.out.println("Found at index = " + index);
System.out.println("Month = " + monthList.get(index));
}
}
}
The output of the code snippet above is below.
Months = [, April, August, December, February, January, July, June, March, May, November, October, September]
Found at index = 10
Month = November
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024