Skip to content

Instantly share code, notes, and snippets.

public static void BinarySearch(String Filename) throws IOException {
//int index = -1;
int lower = 0;
int upper = elementCount -1; //stateCollection.length - 1;
int current;
boolean found = false;
int probe = 0;
String searchKey;
String c;
String p;