We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f4fe0e commit e321db8Copy full SHA for e321db8
searchingAlgo/binarySearch/Rec-bin-search.cpp renamed to searchingAlgo/binarySearch/binarySearchRecursive.cpp
@@ -1,6 +1,6 @@
1
#include <bits/stdc++.h>
2
using namespace std;
3
- // recursive binary search for sorted array
+ // recursive binary search for a sorted array
4
bool binse(int arr[],int l,int h,int x)
5
{
6
if(l>h)
0 commit comments