摘要:
首先有以下几个问题需要考虑:1. 负数是不是回文数?这里假设负数不是回文数。2. 如果要求不能用额外的存储空间怎么办?下面的代码给出四种方法:View Code 1 #include <iostream> 2 #include <cassert> 3 #include <limits> 4 #include <numeric> 5 #include <string> 6 using namespace std; 7 8 long long reverseNumber(int number) 9 { 10 assert(number&g 阅读全文