The Solution to LeetCode 69 Sqrt(x)

Question: Implement int sqrt(int x).spa Compute and return the square root of x.code 思路:本題採用二分法進行求解。 Answer:input class Solution { public: int mySqrt(int x) { int low=0; int high=x; int mid=0; if(x<=1
相關文章
相關標籤/搜索