Input: x = 121 Output:true Explanation:121 reads as121from left to right andfrom right to left.
Example 2:
1 2 3
Input: x = -121 Output: false Explanation: From left toright, it reads -121. From rightto left, it becomes 121-. Therefore it is nota palindrome.
Example 3:
1 2 3
Input: x = 10 Output:false Explanation: Reads 01from right to left. Therefore it isnot a palindrome.
Constraints:
-231 <= x <= 231 - 1
Follow up: Could you solve it without converting the integer to a string?
我的代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
classSolution { public: bool isPalindrome(int x) { if (x == 0) returntrue; elseif (x < 0) returnfalse; else { int z = x; string t ; while (x) { int p = x % 10; x = x / 10; t = t + to_string(p); } if (to_string(z) == t) returntrue; elsereturnfalse; } } };