zoukankan      html  css  js  c++  java
  • Palindrome Number

    Determine whether an integer is a palindrome. Do this without extra space.

    click to show spoilers.

    Some hints:

    Could negative integers be palindromes? (ie, -1)

    If you are thinking of converting the integer to string, note the restriction of using extra space.

    You could also try reversing an integer. However, if you have solved the problem "Reverse Integer", you know that the reversed integer might overflow. How would you handle such case?

    There is a more generic way of solving this problem.

     1 class Solution {
     2 public:
     3     bool isPalindrome(int x) {
     4         if(x<0) return false;
     5         if(x==0) return true;
     6         vector<int> v;
     7         while(x!=0)
     8         {
     9             v.push_back(x%10);
    10             x=x/10;
    11         }
    12         int n=v.size();
    13         int left=0;
    14         int right=n-1;
    15         while(left<right)
    16         {
    17             if(v[left]!=v[right])
    18                 return false;
    19             left++;
    20             right--;
    21         }
    22         return true;
    23     }
    24 };

     不使用额外内存的方法:

    class Solution {
    public:
        bool isPalindrome(int x) {
            if (x < 0) {
                return false;
            } else if (x / 10 == 0) {          //个位数默认为true
                return true;
            } else {
                int a = 0;
                int b = x;
                while (x != 0) {
                    a = a * 10 + x % 10;       //不断取最后一位
                    x = x / 10;                //取到去除最后一位的新值
                }
                if (a == b) {
                    return true;
                } else {
                    return false;
                }
            }
        }
    };
  • 相关阅读:
    Linux 间网线直连
    Ubuntu 14.04安装配置NFS
    Android Native IPC 方案支持情况
    使用WindowsAPI获取录音音频
    Ubuntu 64编译32位程序
    TensorFlow 安装 Ubuntu14.04
    纯css实现表单输入验证
    安装ELectron失败解决方案
    正则学习
    常见web攻击
  • 原文地址:https://www.cnblogs.com/zl1991/p/4730555.html
Copyright © 2011-2022 走看看