69.Sqrt
Example 1:
Input: 4
Output: 2
Example 2:
Input: 8
Output: 2
Explanation: The square root of 8 is 2.82842..., and since
the decimal part is truncated, 2 is returned.class Solution {
int mySqrt(int start,int end, int x)
{
long int mid=(start+end)/2;
if(mid*mid <=x && (mid+1)*(mid+1)>x) return mid;
else if(mid*mid>x ) return mySqrt(start, mid,x);
else return mySqrt(mid,end,x);
}
public:
int mySqrt(int x) {
if(x==0 || x==1) return x;
return mySqrt(0,x,x) ;
}
};Last updated