All Questions
2 questions
3
votes
1
answer
1k
views
A recursive function that performs a binary search
I created a recursive function that uses binary search to just return true if it finds the value and false if it does not.
I'm new to recursion and binary search so please let me know where I can ...
7
votes
2
answers
510
views
Can this recursive binary search in C be made more concise?
Can someone please let me know if they see glaring issues with this code? I tested a handful of cases and it seems to work but in other threads. I often see much more concisely written versions of ...