您好,登錄后才能下訂單哦!
這篇文章主要介紹“C++實現求平方根的方法”,在日常操作中,相信很多人在C++實現求平方根的方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++實現求平方根的方法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
Implement int sqrt(int x).
Compute and return the square root of x, where x is guaranteed to be a non-negative integer.
Since the return type is an integer, the decimal digits are truncated and only the integer part of the result is returned.
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.
這道題要求我們求平方根,我們能想到的方法就是算一個候選值的平方,然后和x比較大小,為了縮短查找時間,我們采用二分搜索法來找平方根,找最后一個不大于目標值的數,這里細心的童鞋可能會有疑問,在總結貼中第三類博主的 right 用的是開區間,那么這里為啥 right 初始化為x,而不是 x+1 呢?因為總結帖里的 left 和 right 都是數組下標,這里的 left 和 right 直接就是數字本身了,一個數字的平方根是不可能比起本身還大的,所以不用加1,還有就是這里若x是整型最大值,再加1就會溢出。最后就是返回值是 right-1,因為題目中說了要把小數部分減去,只有減1才能得到正確的值,代碼如下:
解法一:
class Solution { public: int mySqrt(int x) { if (x <= 1) return x; int left = 0, right = x; while (left < right) { int mid = left + (right - left) / 2; if (x / mid >= mid) left = mid + 1; else right = mid; } return right - 1; } };
這道題還有另一種解法,是利用牛頓迭代法,記得高數中好像講到過這個方法,是用逼近法求方程根的神器,在這里也可以借用一下,因為要求 x2 = n 的解,令 f(x)=x2-n,相當于求解 f(x)=0 的解,可以求出遞推式如下:
xi+1=xi - (xi2 - n) / (2xi) = xi - xi / 2 + n / (2xi) = xi / 2 + n / 2xi = (xi + n/xi) / 2
解法二:
class Solution { public: int mySqrt(int x) { if (x == 0) return 0; double res = 1, pre = 0; while (abs(res - pre) > 1e-6) { pre = res; res = (res + x / res) / 2; } return int(res); } };
也是牛頓迭代法,寫法更加簡潔一些,注意為了防止越界,聲明為長整型,參見代碼如下:
解法三:
class Solution { public: int mySqrt(int x) { long res = x; while (res * res > x) { res = (res + x / res) / 2; } return res; } };
到此,關于“C++實現求平方根的方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。