Conditional Expressions and Statements : 08/24/2023
Operations on Variables : 08/23/2023
Variables and Types : 08/22/2023
Welcome to CS 124 : 08/21/2023
Binary Search
booleansearch(int[] values, intlookingFor) {
returnfalse;
}
assertsearch(newint[]{1, 2, 4}, 4);
This brief lesson will cover one of the efficient algorithms enabled by sorting: binary search!
This is a fun example of an algorithm that you can approach either recursively or iteratively.
We’ll walk through it visually and then let you tackle it on the next homework problem.
One of the reasons that sorting is such an important algorithmic primitive is that it enables other efficiency algorithms.
For example, we’ve already seen linear array search, which has runtime O(n):
booleansearch(int[] values, intlookingFor) {
for (inti=0; i<values.length; i++) {
if (values[i] ==lookingFor) {
returntrue;
}
}
returnfalse;
}
assertsearch(newint[]{1, 2, 5}, 5);
Given that O(n) represents searching the entire array, it is clearly the worst case runtime for array search.
But, it is also the best case if we have no idea where the item could be!
But what if we knew something about the structure of the data in the array.
Specifically, what if we knew that it was sorted?
Could we do better?
https://www.youtube.com/watch?v=0IAwYcS9uCs
Or, as my old graduate school friend David Malan famously explained it:
Binary search is one recursive algorithm where the O(log n) nature of the algorithm is fairly easy to understand.
Start with an array of N items.
After one round, you have N / 2 left to consider.
Then N / 4.
Then N / 8.
Until you either get to 1, or you find the item somewhere along the way.
So in the worst case we do O(log n) steps, and in the best case we may do better.
Cool!
Now it’s your chance to implement this classic algorithm!
There are good approaches that use both recursion and iteration.
The iterative approach maintains the start and end index of where the item might be in the array and adjusts these on each iteration.
The recursive approach has the base case being an empty or single-item array, and makes the problem smaller by determining whether the item should be in the left half-array or right half-array.
Good luck and have fun!
Homework: BinarySearcher Array
Created By: CS 124 Staff
/ Version: 2020.11.0
Let's implement a classic algorithm: binary search on an array.
Implement a class named BinarySearcher that provides one static method named search.
search takes a SearchList as its first parameter and a Comparable as its second.
If either parameter is null, or if the SearchList is empty, you should throw an IllegalArgumentException.
SearchList is a provided class. It provides a get(int) method that returns the Comparable at that index, and
a size method that returns the size of the SearchList. Those are the only two methods you should need!
search returns a boolean indicating whether the passed value is located in the sorted SearchList.
To search the sorted SearchList efficiently, implement the following algorithm:
Examine the value in the middle of the current array (index (start + end) / 2)
If the midpoint value is the value that we are looking for, return true
If the value that we are looking for is greater than the midpoint value, adjust the current array to start at
the midpoint
if the value that we are looking for is less than the midpoint value, adjust the current array to end at the
midpoint
Continue until you find the value, or until the start reaches the end, at which point you can give up and
return false
This is a fun problem! Good luck! Keep in mind that every time you call SearchList.get that counts as one
access, so you'll need to reduce unnecessary accesses to pass the test suite.
This problem deadline has passed, but you can continue to practice. Experiment! You will not lose credit.
Homework Restricted to Current CS 124 Students
A publicly-accessible version of this content is available at learncs.online.