Searching
Binary Search (Recursive)
Use the same binary-search window as the iterative lesson, but pass lo and hi through recursive calls.
Algorithm
execution replay
The checked-in replay follows the language-neutral state table for `search-binary-recursive`.
cross-language comparison
This Kotlin DSA version keeps the same data and final output as every other DSA book in this wave.
Basic Implementation
basic.kt
Replay: real traced execution (multi-file project)
fun search(arr: IntArray, target: Int, lo: Int, hi: Int): Int {
if (lo > hi) return -1
val mid = lo + (hi - lo) / 2
if (arr[mid] == target) return mid
if (arr[mid] < target) return search(arr, target, mid + 1, hi)
return search(arr, target, lo, mid - 1)
}
fun main() {
val arr = intArrayOf(1, 3, 5, 7, 9, 11, 13)
val target = 11
println(search(arr, target, 0, arr.size - 1))
}
lo ← 0, hi ← 6, target ← 11
1fun search(arr: IntArray, target: Int, lo: Int, hi: Int): Int {2 if (lo > hi) return -1values this step0lo6hi11targetmid ← 3, arr[mid] ← 7, next call ← (4, 6)
2if (lo > hi) return -13val mid = lo + (hi - lo) / 24if (arr[mid] == target) return midvalues this step3mid7arr[mid](4, 6)next call0lo6himid ← 5, arr[mid] ← 11, result ← 5
2if (lo > hi) return -13val mid = lo + (hi - lo) / 24if (arr[mid] == target) return midvalues this step5mid11arr[mid]5result4lo6histdout ← 5
11 val target = 1112 println(search(arr, target, 0, arr.size - 1))13}values this step5stdout5result
Complexity
- Time: O(log n)
- Space: O(log n) call stack
Implementation notes
- Kotlin stores the sorted input as a primitive
IntArray;arris avalreference and the search only reads indexedIntvalues. - The recursive signature is
search(arr: IntArray, target: Int, lo: Int, hi: Int): Int, so each call receives copiedIntbounds and returns an index sentinel. if (lo > hi) return -1is the base case for a miss, avoiding nullableInt?result state.- The midpoint uses
val mid = lo + (hi - lo) / 2, keeping the index arithmetic inIntwhile avoiding the directlo + hiform. - A match returns immediately with
return mid; otherwisearr[mid] < targetrecurses right withmid + 1, and the final branch recurses left withmid - 1. - The trace shows the first call
(lo=0, hi=6), thenmid=3with value7recursing right to(4, 6), thenmid=5with value11returning5. println(search(arr, target, 0, arr.size - 1))prints the returned index as5.