10.2. Recursive Searching and Sorting¶
In Unit 7, we learned about searching and sorting algorithms using iteration (loops) to search or sort arrays and ArrayLists. In this lesson, we will take a look at a recursive binary search algorithm and a recursive merge-sort algorithm.
10.2.1. Recursive Binary Search¶
In Unit 7, we learned about two search algorithms, linear search and binary search. Linear search searches for an element in an array or ArrayList by checking each element in order. Binary search is more efficient (faster) because it starts at the middle of a sorted array or ArrayList and eliminates half of the array or ArrayList each pass through the algorithm. Binary search only works on sorted data. It can be written with iteration (using a loop) like below or recursively.
Watch the iterative binary search code running in the Java visualizer.
Let’s write a recursive version of Binary Search. Note that you can write solutions to many problems using recursion or iteration. Iteration is usually preferred and more efficient, but recursive solutions can be elegant and require less code.
10-2-2: What’s the base case for a recursive version of Binary Search (where we want the recursion to stop)? Remember that in binary search, we always check the middle element first when looking for a target element from a startIndex to an endIndex.
10-2-3: Given a recursive binary search method with the method signature “boolean binarySearch(int[] array, int startIndex, int endIndex, int target)”, what recursive method call would search the array from index 0 to the middle index?
Here is the Java code for a recursive binary search:
Run the code below. Try searching for the value 3 and then the value 2 which is not in the array. What would happen if we removed the second base case checking if end < start? Try it and see.
Try the recursive binary search code in this Java visualizer link.
10.2.2. Merge Sort¶
In Unit 7, we looked at two sorting algorithms, Selection Sort and Insertion Sort. In this lesson, we will look at a third sorting algorithm, Merge Sort, which uses recursion. Merge Sort is actually more efficient (faster) than Selection Sort and Insertion Sort because it divides the problem in half each time like binary search. This is called a divide and conquer algorithm.
A merge sort recursively breaks the values to be sorted in half until there is only one value to be sorted and then it merges the two sorted lists into one sorted list. The code shown below uses a second array the same size as the original array for merging the values in order. Then it copies all of the sorted values back into the original array.
Here is a folk dance video that shows the merge sort process.
And here is a short video that describes how merge sort works.
The code for mergeSort
below is from the AP CSA course description.
To identify a merge sort look for the following:
3 methods, mergeSort, mergeSortHelper, and merge
mergeSortHelper is recursive
You can see this executing using the Java visualizer for merge sort.
You can trace through a merge sort algorithm given an array by using parentheses or curly braces to show how the array is divided into subarrays and then merged. For example, here is how you could write down the trace of mergeSort(arr1)
where arr1 = {86, 3, 43, 5} like in the example above.
Split 1: { {86, 3} , {43, 5} }
Split 2: { { {86},{3}} , { {43},{5}} }
Merge 1: { {3, 86} , {5,43} }
Merge 2: { 3, 5, 43, 86 }
- If the data is already sorted in ascending order
- This won't really affect the execution time for merge sort.
- If the data is already sorted in descending order
- This won't really affect the execution time for merge sort.
- It will always take the same amount of time to execute
- It will take about the same time regardless of the data.
10-2-8: Under what condition will a merge sort execute faster?
- selection sort
- Merge sort is always faster than selection sort.
- insertion sort
- Merge sort is usually faster than insertion sort.
- merge sort
- Merge sort is always faster than selection sort and usually faster than insertion sort.
10-2-9: Which sort should be the fastest most of the time?
10.2.3. Tracing Challenge : Recursive Search and Sort¶
Working in pairs, practice the recursive binary search and merge sort algorithms with a deck of cards or pieces of paper with numbers or names on them. Here’s a video that shows merge sort with cards.
Work in pairs to do the following tracing problems.
10-2-11: Trace through mergeSort(array) where array = {5, 2, 20, 22, 17, 15, 8, 10} writing down each split and merge.
10-2-12: Trace through recursiveBinarySearch(sortedArray, 0, 8, 22) looking for the target number 22 where sortedArray = {2, 5, 8, 10, 11, 15, 17, 20, 22}. Write down each middle element that is checked and the start and end index for each recursive call. How many elements did the binary search have to check before finding 22? How would this compare to a linear search?
10.2.4. Summary¶
The binary search algorithm can be written either iteratively or recursively.
Data must be in sorted order to use the binary search algorithm.
The binary search algorithm starts at the middle of a sorted array or ArrayList and eliminates half of the array or ArrayList in until the desired value is found or all elements have been eliminated.
Binary search can be more efficient than sequential/linear search.
Merge sort is a recursive sorting algorithm that can be used to sort elements in an array or ArrayList.