zoukankan      html  css  js  c++  java
  • Leetcode:9. Palindrome Number

    题目:
    Leetcode: 9. Palindrome Number

    描述:

    • 内容:Determine whether an integer is a palindrome. Do this without extra space.
    • 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、负数不存在回文数;
      2、不能够申请新的内存空间;
      3、逆序可能会导致数字移除;

    分析:

    • 思路:
      1、利用long long来存储 逆序的数,在进行比较;
      2、将回文数分成中值前后的两部分再进行比较,后一部分逆序和前面的数字比较。

    代码:

    bool isPalindrome(int x) {
        // 实现方法一:
        long long nValue = 0;
        int nTemp = x;
        if (nTemp < 0)
        {
            return false;
        }
        while (0 != nTemp / 10)
        {
            nValue = nValue * 10 + nTemp % 10;
            nTemp /= 10;
        }
        nValue = nValue * 10 + nTemp % 10;
        if (nValue == x)
        {
            return true;
        }
        return false;
    }
    

    bool isPalindromeEx(int x) {
        // 实现方法二:
        if (x < 0)
        {
            return false;
        }
        int nLen = 0;
        int nTemp = x;
        while (0 != nTemp)
        {
            nTemp /= 10;
            ++nLen;
        }
        nTemp = x;
        int nValue = 0;
        int nHalf = nLen / 2;
        while (0 != nHalf)
        {
            nValue = nValue * 10 + (nTemp % 10);
            nTemp /= 10;
            --nHalf;
        }
        
        // 若为奇数回文数还需去掉最中间的数位,也就是当前数的末尾一位
        if (1 == nLen % 2)
        {
            nTemp /= 10;
        }
        return nTemp == nValue;
    }
    

    bool isPalindromeEx1(int x) {
        if (x < 0)
        {
            return false;
        }
        int nValue = 0;
        // 较方法二做了改进
        while (x > nValue)
        {
            nValue = nValue * 10 + (x % 10);
            x /= 10;
        }
    
        return (x == nValue) || (x == (nValue / 10));
    }
    
    
  • 相关阅读:
    go系列(6)- beego日志模块的使用
    shell学习(8)- ulimit调优系统参数
    新年开工
    No module named yum错误的解决办法
    如何杀死defunct进程
    图灵机器人微信自动聊天功能
    go系列(5)- beego自己写controller
    Hadoop/Spark 集群都启动了哪些 Java 程序
    Spark 不允许在 Worker 中访问 SparkContext
    Spark 安装
  • 原文地址:https://www.cnblogs.com/liuwfuang96/p/6864422.html
Copyright © 2011-2022 走看看