首页 > 其他 > 详细

leetcode.9---------------Palindrome Number

时间:2015-01-29 12:49:03      阅读:265      评论:0      收藏:0      [点我收藏+]

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.

方法一:把整个数翻转过来  例如:1234变成4321   更多方法请参考https://oj.leetcode.com/discuss/oj/palindrome-number

class Solution {
public:
	bool isPalindrome(int x)
	{
		int m = x, n = 0;
		if (x < 0) return false;
		while (x) {
			n = n * 10 + x % 10;
			x = x / 10;
		}
		return (m == n);
	}
};
方法二:前后扫描第一个数与最后一个数比较,第二个与倒数第二个数比较...............

class Solution {
public:
	bool isPalindrome(int x) {
		// Start typing your C/C++ solution below
		// DO NOT write int main() function
		if (x < 0)
			return false;
		if (x == 0)
			return true;

		int base = 1;
		while (x / base >= 10)
			base *= 10;

		while (x)
		{
			int leftDigit = x / base;
			int rightDigit = x % 10;
			if (leftDigit != rightDigit)
				return false;
			x = x % base / 10;
			base /= 100;
		}

		return true;
	}
};






leetcode.9---------------Palindrome Number

原文:http://blog.csdn.net/chenxun_2010/article/details/43267513

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!