Closed as Exact Duplicate:

Fastest way to determine if an integer’s square root is an integer

What's a way to see if a number is a perfect square?

bool IsPerfectSquare(long input)
{
   // TODO
}

I'm using C# but this is language agnostic.

Bonus points for clarity and simplicity (this isn't meant to be code-golf).


Edit: This got much more complex than I expected! It turns out the problems with double precision manifest themselves a couple ways. First, Math.Sqrt takes a double which can't precisely hold a long (thanks Jon).

Second, a double's precision will lose small values ( .000...00001) when you have a huge, near perfect square. e.g., my implementation failed this test for Math.Pow(10,18)+1 (mine reported true).

link|improve this question

There was a very similar question. Please refer to stackoverflow.com/questions/295579/… for an excellent answer. – Vlad Gudim Dec 5 '08 at 13:45
To the solution you choose, don't forget to prepend a quick check for negativeness. – angus Dec 5 '08 at 13:51
Yes, I had that in there but removed it for brevity. Thanks for pointing it out though – Michael Haren Dec 5 '08 at 13:53
Per community request, this question has been deemed a duplicate of: stackoverflow.com/questions/295579 Thanks for the help folks! – Michael Haren Dec 5 '08 at 14:22
You could also google for the 'lsqrt' method used for integer square root. – leppie Dec 5 '08 at 14:27
show 1 more comment
feedback

closed as exact duplicate by Michael Haren Dec 5 '08 at 14:14

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 30 down vote accepted
bool IsPerfectSquare(long input)
{
    long closestRoot = (long) Math.Sqrt(input);
    return input == closestRoot * closestRoot;
}

This may get away from some of the problems of just checking "is the square root an integer" but possibly not all. You potentially need to get a little bit funkier:

bool IsPerfectSquare(long input)
{
    double root = Math.Sqrt(input);

    long rootBits = BitConverter.DoubleToInt64Bits(root);
    long lowerBound = (long) BitConverter.Int64BitsToDouble(rootBits-1);
    long upperBound = (long) BitConverter.Int64BitsToDouble(rootBits+1);

    for (long candidate = lowerBound; candidate <= upperBound; candidate++)
    {
         if (candidate * candidate == input)
         {
             return true;
         }
    }
    return false;
}

Icky, and unnecessary for anything other than really large values, but I think it should work...

link|improve this answer
Looks as if you were faster than me ;-) Oops - your solution is also better, because 'closestRoot' is a far mor accurate name. – Treb Dec 5 '08 at 13:44
+1 for beating me to it. :) – Bill the Lizard Dec 5 '08 at 13:44
Love the number of upvotes I got before correcting it to a more bulletproof solution ;) – Jon Skeet Dec 5 '08 at 13:46
23  
dude, you're jon skeet. – Epaga Dec 5 '08 at 13:48
4  
I assumed accuracy was important. Otherwise I'd have gone for the "guaranteed to be random" kind of response :) – Jon Skeet Dec 5 '08 at 13:58
show 3 more comments
feedback

In Common Lisp, I use the following:

(defun perfect-square-p (n)
  (= (square (isqrt n))
     n))
link|improve this answer
feedback
bool IsPerfectSquare(long input)
{
    long SquareRoot = (long) Math.Sqrt(input);
    return ((SquareRoot * SquareRoot) == input);
}
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.