热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

[LeetCode]PalindromeNumber

题目说明:Determinewhetheranintegerisapalindrome.Dothiswithoutextraspace.clicktoshowspoilers.So

题目说明:

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.

 

程序代码:

#include 

using namespace std;

bool isPalindrome2(int x)
{
    bool bResult = false;
    if (x <0)
    {
        return false;
    }

    int tempData[20] = {0};
    int tempIdx = 0;
    int tempX = x;
    long long rValue = 0;
    while (tempX)
    {
        tempData[tempIdx++] = tempX % 10;
        tempX /= 10;
    }

    for (int i=0; ii)
    {
        rValue = rValue*10 +tempData[i];
    }

    return (x == rValue);
}

bool isPalindrome3(int x)
{
    if (x <0)
        return false;

    long long nValue = 0;
    int temp = x;
    while (temp)
    {
        nValue = nValue*10 + temp % 10;
        temp /= 10;
    }

    return (x == nValue);
}

bool isPalindrome(int x)
{
    if (x <0)
        return false;

    int dev = 1;
    while (x / dev >= 10)
    {
        dev *= 10;
    }

    while (x != 0)
    {
        int l = x / dev;
        int r = x % 10;
        if (l != r)
            return false;

        x = (x % dev) / 10;
        dev /= 100;
    }

    return true;
}

TEST(Pratices, tIsPalindrome)
{
    // 123 false
    // 121 true
    // -111 false
    // 0 true
    // 2147483647 false
    ASSERT_FALSE(isPalindrome(123));
    ASSERT_TRUE(isPalindrome(121));
    ASSERT_FALSE(isPalindrome(-111));
    ASSERT_TRUE(isPalindrome(0));
    ASSERT_FALSE(isPalindrome(2147483647));


}

 

参考相关:

http://articles.leetcode.com/palindrome-number


推荐阅读
author-avatar
手机用户2502853923
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有