Skip to content

Commit e321db8

Browse files
authored
Updated binarySearchRecursive.cpp
1 parent 0f4fe0e commit e321db8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

searchingAlgo/binarySearch/Rec-bin-search.cpp renamed to searchingAlgo/binarySearch/binarySearchRecursive.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <bits/stdc++.h>
22
using namespace std;
3-
// recursive binary search for sorted array
3+
// recursive binary search for a sorted array
44
bool binse(int arr[],int l,int h,int x)
55
{
66
if(l>h)

0 commit comments

Comments
 (0)