#Binary Search
This project shows two separate implementations of the Binary Search algorithm, an iterative approach and a recursive approach which doesn't use the Java keyword "if".
##Building
To build using command line, please execute the following command from the root directory.
javac @ClassListing
##Running
To run the Tests please change directory into the src folder and run the following command.
java -cp . test.BinarySearchTest