Any language. Any algorithm (except making the number a string and then reversing the string).
Also, I actually have to do this, and I'll be posting my solution too.
|
|
Any language. Any algorithm (except making the number a string and then reversing the string). Also, I actually have to do this, and I'll be posting my solution too.
|
|||
|
|
|
|
For any given num:
If n == rev then num is a palindrome:
|
||||||
|
|
|
This is one of the Project Euler problems. When I solved it in Haskell I did exactly what you suggest, convert the number to a String. It's then trivial to check that the string is a pallindrome. If it performs well enough, then why bother making it more complex? Being a pallindrome is a lexical property rather than a mathematical one. |
||||
|
|
|
Push each individual digit onto a stack, then pop them off. If it's the same forwards and back, it's a palindrome. |
||||
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
Pop off the first and last digits and compare them until you run out. There may be a digit left, or not, but either way, if all the popped off digits match, it is a palindrome. |
||
|
|
|
|
I would be very interested to see an algorithm that is not equivalent -- modulo the +/- 48 needed to convert between ASCII digits and ints -- to converting to a string and reversing. Edit: I should have read the other answers more carefully before I posted. smink's converts the stream of digits into the reversed number without just reversing the digits. |
|||
|
|
|
|
I answered the Euler problem using a very brute-forcy way. Naturally, there was a much smarter algorithm at display when I got to the new unlocked associated forum thread. Namely, a member who went by the handle Begoner had such a novel approach, that I decided to reimplement my solution using his algorithm. His version was in Python (using nested loops) and I reimplemented it in Clojure (using a single loop/recur). Here for your amusement:
There were Common Lisp answers as well, but they were ungrokable to me. |
||
|
|
|
Just for fun, this one also works.
|
||
|
|
|
|
Here is an Scheme version that constructs a function that will work against any base. It has a redundancy check: return false quickly if the number is a multiple of the base (ends in 0). And it doesn't rebuild the entire reversed number, only half. That's all we need.
|
||
|
|