Here is the code:
public int Search(int[] nums, int target) {
return search(nums,target,0,nums.Length-1);
}
public int search(int[] n,int t,int s,int e)
{
if(s>e)
{
return -1;
}
int mid = (s+e)/2;
if(n[mid]==t)
{
return mid;
}
else if(t<n[mid])
{
return search(n,t,s,mid-1);
}
else
{
return search(n,t,mid+1,e);
}
}
Your go-to destination for mastering software development technologies, data structures, and algorithms in an easy-to-understand way!
Popular Posts
-
Here is the code: // => Brute Force Solution: O(m* n) static long arrayManipulation(int n, int[][] queries) { ...
-
HTML: Here is the sample code for scrolling vertical and horizontal with fixed header: <div class="outer-container"> ...
-
Here is the Code: class Program { static void Main(string[] args) { Quene q = new Quene(); // This...