Leetcode-x的平方根

15.x的平方根 題目內容:     代碼及思路: class Solution { public: int mySqrt(int x) { //利用二分法,1)若中間數值的平方,大於輸入值,則在0-中間值當中繼續迭代; //2)若中間數值的平方,小於輸入值,則在中間值-target中繼續迭代 if(x==0||x==1) r
相關文章
相關標籤/搜索