A recursive binary search is the same idea as the iterative one, restated as a method that calls a smaller version of itself instead of looping. A recursive sort takes that further: mergeSort does not sort anything directly, it only trusts that a shorter mergeSort already did, and glues the two results together.
What to write
Read a count, then that many integers ALREADY sorted increasing, then a target value.
Write a RECURSIVE method binarySearch(data, target, low, high) that returns the index of target or -1. Print the result.
Write a second recursive method searchCalls(data, target, low, high) with the exact same recursive shape, that returns how many times the method was called, counting the call that finally returns. Print it.
Read a second count, then that many integers, unsorted.
Write a RECURSIVE method mergeSort(data) that returns a NEW sorted array: split the array in half, call mergeSort on each half, and merge the two sorted halves back together. Print the sorted result, values separated by single spaces.
binarySearch, searchCalls and mergeSort must each call themselves; do not use a loop inside any of the three. The step that merges two already-sorted halves back together is not the recursive part and may use a loop.
Your program reads
A count, then that many integers already sorted increasing, then a target, then a second count, then that many unsorted integers.
Your program prints
The binary search index, the recursive call count, then the merge sorted second array on one line.
Worked examples
These are the cases you can see. There are more you cannot, and they use different values, so an answer that prints these numbers as constants will fail.
Example 1 input
7
1 2 3 5 7 8 9
7
5
5 2 8 1 9
Example 1 output
4
3
1 2 5 8 9
Example 2 input
1
42
42
1
7
Example 2 output
0
1
7
Your answer
Main.java
Input for the Run button
Run sends whatever is in the input box below. Submitting runs your program against every test case, including hidden ones with different input.
Stuck?
Hint 1
binarySearch and searchCalls follow the exact same recursive shape as each other: one returns the answer, the other returns how many calls it took, including the call that finally returns.
Hint 2
mergeSort splits the array in half, calls itself on each half, and merges the two sorted results. The base case is an array of length 0 or 1, which is already sorted.
Hint 3
merge is given because combining two sorted halves is not the recursive part of merge sort; the recursion is entirely in how the array gets split down to that base case.
Whether you're a student, parent, or teacher — I'd love to hear from you.
Just want free AP CS resources?
Enter your email below and check the subscribe box — no message needed.
Students get daily practice questions and study tips. Teachers get curriculum resources and teaching strategies.
Typically responds within 24 hours
✓
Message Sent!
Thanks for reaching out. I'll get back to you within 24 hours.
34.8% of Tanner’s CSP students score 5s. The national average is 9.6%.
I’m a Student
I’m a Teacher
✓Free AP CSP Big Ideas cheat sheet (PDF)
✓Daily practice questions covering all 5 Big Ideas
✓Create Task tips that actually work — from a real AP teacher
✓Free class codes with student progress tracking
✓3 full practice exams + Top 100 questions for your class
✓Create Task guidance and pseudocode reference sheets
Which AP CS exams are you prepping for?
✓
You’re in!
Your Big Ideas cheat sheet is on its way.
No thanks, I’ll figure it out myself
Avg student improvement: 2+ score levels | Real AP teacher, not just a tutor
AP Cybersecurity — National Launch 2026–27
Get Early Access to AP Cyber
AP Cyber launches nationally fall 2026. Get in early to help shape the course — start free with Unit 1 and the free teacher gradebook.
✓
You’re in — you’re on the AP Cyber early-access list!
Tanner will follow up personally within 48 hours. Your feedback will directly shape what gets built.
Step 1 of 4
Early Access — Limited Spots
Who are you?
Are you a teacher or a student?
I’m a Teacher
I’m a Student
Free to start — Unit 1 and the teacher gradebook are always free, no credit card.
Founding teachers unlock all 5 units and get direct input on what we build.
Not interested right now
Step 2 of 4
Your School
Tell us about your class
Other AP CS courses you teach
Your Situation
Tell us about yourself
Step 3 of 4
Classroom Needs
What does your classroom need? (select all that apply)
How You Study
What would help you most? (select all that apply)
Step 4 of 4
Almost Done
Where should we send your early-access details?
Free gradebook + Unit 1 | Your feedback shapes the course | Built by a real AP teacher