一天一道LeetCode 本系列文章已全部上传至我的github,地址:ZeeCoder's Github 欢迎大家关注我的新浪微博,我的新浪微博 欢迎转载,转载请注明出处 (一)题目 Implement int sqrt(int x). Compute and return the square root of x. (二)解题 实现sqrt(x),找到一个数,它的平方等于小于x的最接近x的数. class Solution { public: int mySqrt(int x) { int…