Tracks
/
Scheme
Scheme
/
Exercises
/
Binary Search
Binary Search

Binary Search

Easy

Introduction

You have stumbled upon a group of mathematicians who are also singer-songwriters. They have written a song for each of their favorite numbers, and, as you can imagine, they have a lot of favorite numbers (like 0 or 73 or 6174).

You are curious to hear the song for your favorite number, but with so many songs to wade through, finding the right song could take a while. Fortunately, they have organized their songs in a playlist sorted by the title — which is simply the number that the song is about.

You realize that you can use a binary search algorithm to quickly find a song given the title.

Instructions

Your task is to implement a binary search algorithm.

A binary search algorithm finds an item in a list by repeatedly splitting it in half, only keeping the half which contains the item we're looking for. It allows us to quickly narrow down the possible locations of our item until we find it, or until we've eliminated all possible locations.

Caution

Binary search only works when a list has been sorted.

The algorithm looks like this:

  • Find the middle element of a sorted list and compare it with the item we're looking for.
  • If the middle element is our item, then we're done!
  • If the middle element is greater than our item, we can eliminate that element and all the elements after it.
  • If the middle element is less than our item, we can eliminate that element and all the elements before it.
  • If every element of the list has been eliminated then the item is not in the list.
  • Otherwise, repeat the process on the part of the list that has not been eliminated.

Here's an example:

Let's say we're looking for the number 23 in the following sorted list: [4, 8, 12, 16, 23, 28, 32].

  • We start by comparing 23 with the middle element, 16.
  • Since 23 is greater than 16, we can eliminate the left half of the list, leaving us with [23, 28, 32].
  • We then compare 23 with the new middle element, 28.
  • Since 23 is less than 28, we can eliminate the right half of the list: [23].
  • We've found our item.

Track Specific Notes

If the element is not present in the array, return the symbol 'not-found. The array will be passed as a vector.

Running and testing your solutions

From the command line

Simply type make chez if you're using ChezScheme or make guile if you're using GNU Guile. Sometimes the name for the scheme binary on your system will differ from the defaults. When this is the case, you'll need to tell make by running make chez chez=your-chez-binary or make guile guile=your-guile-binary.

From a REPL

  • Enter (load "test.scm") at the repl prompt.
  • Develop your solution in binary-search.scm reloading as you go.
  • Run (test) to check your solution.

Failed Test Cases

If some of the test cases fail, you should see the failing input and the expected output. The failing input is presented as a list because the tests call your solution by (apply binary-search input-list). To learn more about apply see The Scheme Programming Language -- Chapter 5


Source

WikipediaThe link opens in a new window or tab
Edit via GitHub The link opens in a new window or tab
Scheme Exercism

Ready to start Binary Search?

Sign up to Exercism to learn and master Scheme with 39 exercises, and real human mentoring, all for free.