leetcode367

public class Solution {
    public bool IsPerfectSquare(int num) {
        int low = 1, high = num;
            while (low <= high)
            {
                long mid = (low + high) >> 1;
                if (mid * mid == num)
                {
                    return true;
                }
                else if (mid * mid < num)
                {
                    low = (int)mid + 1;
                }
                else
                {
                    high = (int)mid - 1;
                }
            }
            return false;
    }
}

https://leetcode.com/problems/valid-perfect-square/#/description

原文地址:https://www.cnblogs.com/asenyang/p/6744050.html