class Solution { public: /** * * @param x int整型 * @return bool布尔型 */ bool isPalindrome(int x) { long result; int shu[33]; int i=0; int flag=true; if(x>0){ while(x!=0){ shu[i]=x%10; x/=10; i+=1; }// write code here int start; int end; int j,k; //采用双指针解法 for(j=0,k=i-1;j<=(i-1)/2;j+=1,k-=1){ if(s...