博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Palindrome
阅读量:5101 次
发布时间:2019-06-13

本文共 777 字,大约阅读时间需要 2 分钟。

 

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.

 

http://www.geeksforgeeks.org/write-a-c-program-to-reverse-digits-of-a-number/

public boolean isPalindrome(int x) {if(x<0)return false;int num = x;int r = 0;while(x > 0){r = r*10 + x%10;x = x/10;}if(num==r)   return true;return false;}

 

转载于:https://www.cnblogs.com/anorthwolf/archive/2013/05/20/3088572.html

你可能感兴趣的文章
Laravel Carbon获取 某个时间后N个月的时间
查看>>
Laravel 指定日志生成目录
查看>>
layui 表格点击图片放大
查看>>
there is no permission with id `12`
查看>>
Laravel使用EasyWechat 进行微信支付
查看>>
我的大二学年总结
查看>>
WEB SERVER调优
查看>>
Linux中的线程与进程以及调度
查看>>
Jetty性能调优
查看>>
Java设计模式
查看>>
Spring动态的切换数据源
查看>>
性能调优工具
查看>>
https的报文传输机制
查看>>
红黑树
查看>>
mybatis的源码学习
查看>>
leetcode(90)子集 2
查看>>
leetcode(85)最大矩形
查看>>
leetcode(121-123)买股票的最佳时机
查看>>
leetcode(105)从前序遍历和中序遍历构建二叉树
查看>>
leetcode(153)寻找旋转排序数组中的最小值
查看>>