in c++ what will be the fastest logic to find next palindrome of a given 15 digit number? for example what will be the next palindrome of: 134567329807541 ?
|
show 1 more comment
feedback
|
| |||||||||||
feedback
|
|
I believe it's like this
| |||||||||||||||||
feedback
|
|
I am not about to implement anything, but I imagine the logic would be:
If the length is uneven, you need to treat the middle digit separately. But that is quite trivial. | |||
|
feedback
|
C++tag,std::string(which you should use) has a lot of member functions to manipulate its contents. Unfortunately, for historical reasons, some of them work with indexes, some work with iterators, many (but not all) have versions for both, many (but not all) have alternative algorithms in the<algorithm>header. A good way to in-place reverse a sequence supplying random-access iterators is usingstd::reverse(), a good way to compare two arbitrary sequences isstd::equal(). – sbi Oct 4 '09 at 12:00