首页 > 其他 > 详细

LeetCode:Valid Perfect Square

时间:2016-06-28 11:04:01      阅读:300      评论:0      收藏:0      [点我收藏+]

Valid Perfect Square




Total Accepted: 1976 Total Submissions: 5317 Difficulty: Medium

Given a positive integer num, write a function which returns True if num is a perfect square else False.

Note: Do not use any built-in library function such as sqrt.

Example 1:

Input: 16
Returns: True

Example 2:

Input: 14
Returns: False

Credits:
Special thanks to @elmirap for adding this problem and creating all test cases.

Subscribe to see which companies asked this question

Hide Tags
 Binary Search
Hide Similar Problems
 (M) Sqrt(x)




























思路:

二分查找。


java code:

public class Solution {
    public boolean isPerfectSquare(int num) {
        
        long lo = 1, hi = num / 2;
        
        if(num == 1) return true;
        
        long x = num;
        
        while(lo <= hi) {
            long mid = lo + (hi - lo) / 2;
            if(mid * mid == x)
                return true;
            else if(mid * mid < x)
                lo = mid + 1;
            else
                hi = mid - 1;
        }
        return false;
    }
}


LeetCode:Valid Perfect Square

原文:http://blog.csdn.net/itismelzp/article/details/51773849

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!