0
0
DSA C++programming~10 mins

Binary Search Recursive Approach in DSA C++ - Execution Trace

Choose your learning style9 modes available
Concept Flow - Binary Search Recursive Approach
Start with full array range
Calculate middle index
Compare middle element with target
Return mid
Repeat until found or range invalid
Return -1 if not found
Start with the full array, find the middle element, compare it with the target, then recursively search the left or right half until found or range is invalid.
Execution Sample
DSA C++
int binarySearch(int arr[], int left, int right, int target) {
  if (left > right) return -1;
  int mid = left + (right - left) / 2;
  if (arr[mid] == target) return mid;
  if (arr[mid] > target) return binarySearch(arr, left, mid - 1, target);
  return binarySearch(arr, mid + 1, right, target);
}
This code recursively searches for a target value in a sorted array by dividing the search range in half each time.
Execution Table
StepOperationLeftRightMidarr[Mid]ComparisonNext RangeResult
1Start search06377 vs 3: 7 > 3Left half (0 to 2)
2Recursive call02133 vs 3: 3 == 3Found targetReturn 1
3Return1
💡 Search ends when target is found at index 1 or when left > right (not in this case).
Variable Tracker
VariableStartAfter Step 1After Step 2Final
left0000
right6222
midN/A311
arr[mid]N/A733
resultN/AN/A11
Key Moments - 3 Insights
Why do we calculate mid as left + (right - left) / 2 instead of (left + right) / 2?
Calculating mid as left + (right - left) / 2 prevents integer overflow when left and right are large, as shown in Step 1 of the execution_table.
What happens when left becomes greater than right?
When left > right, it means the target is not in the array, so the function returns -1 and stops recursion, as explained in the exit_note.
Why do we return mid immediately when arr[mid] == target?
Because we found the target at index mid, so no further search is needed. This is shown in Step 2 where the comparison is equal and the function returns mid.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table, what is the value of mid at Step 1?
A1
B2
C3
D0
💡 Hint
Check the 'Mid' column in the first row of the execution_table.
At which step does the function find the target value?
AStep 1
BStep 2
CStep 3
DIt never finds the target
💡 Hint
Look at the 'Comparison' and 'Result' columns in the execution_table.
If the target was 10 instead of 3, what would happen at Step 1?
ASearch right half (4 to 6)
BSearch left half (0 to 2)
CReturn mid immediately
DReturn -1 immediately
💡 Hint
Compare arr[mid] with target in Step 1 and decide which half to search next.
Concept Snapshot
Binary Search Recursive Approach:
- Input: sorted array, left index, right index, target
- Calculate mid = left + (right - left) / 2
- If arr[mid] == target, return mid
- If arr[mid] > target, search left half recursively
- Else, search right half recursively
- Return -1 if target not found (left > right)
Full Transcript
Binary Search Recursive Approach starts by checking the middle element of the current search range. If the middle element equals the target, it returns the index immediately. If the middle element is greater than the target, it recursively searches the left half. If less, it searches the right half. This process repeats until the target is found or the search range is invalid (left > right), returning -1. The mid index is calculated carefully to avoid overflow. The execution table shows the step-by-step recursive calls and comparisons.