Leetcode_Palindrome Number

这个问题就是判断整数是否为回文。

思路1:利用一个字符串,将int转换为字符串,但这样会需要使用额外的内存

思路2:经整数翻转,然后与原来的整数比较是否相等,但这样可能翻转后的整数会溢出

思路3:不断取整数的最高位和最低位(10进制下)进行比较,相等则取次高位和次低位进行比较

class Solution {
public:
    bool isPalindrome(int x) {
		if(x==0)
			return true;
		if(x<0)
			return false;
		int len=0;
		int copyX=x;
		while(copyX!=0)
		{
			++len;
			copyX=copyX/10;
		}
		copyX=x;
		for(int i=0;i<=len/2;++i)
		{
			if(copyX%10!=((int)(x/pow(10,(float)len-1-i))%10))
				return false;
			copyX=copyX/10;
		}
		return true;

    }
};

为了规避上面程序中所用到的pow,也可以换成另外一种方式:(此源码来源于网上)

class Solution {
public:
    bool isPalindrome(int x) {
		if(x<0) return false;
		int d=1;
		while(x/d>=10) d*=10;//d为与x位数相同的整数,即10,100,1000等
		while(x>0)
		{
			int q=x/d;
			int r=x%10;
			if(q!=r) return false;
			x=x%d/10;//每次比较完之后,x就去点最高位和最低位
			d/=100;
		}
        return true;
    }
};
时间: 2024-08-06 15:55:31

Leetcode_Palindrome Number的相关文章

Codeforces 124A - The number of positions

题目链接:http://codeforces.com/problemset/problem/124/A Petr stands in line of n people, but he doesn't know exactly which position he occupies. He can say that there are no less than a people standing in front of him and no more than b people standing b

17. Letter Combinations of a Phone Number

Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telephone buttons) is given below. Input:Digit string "23" Output: ["ad", "ae", &q

实现一个函数clone,使JavaScript中的5种主要的数据类型(包括Number、String、Object、Array、Boolean)进行值复制

实现一个函数clone,可以对JavaScript中的5种主要的数据类型(包括Number.String.Object.Array.Boolean)进行值复制. 1 /** 对象克隆 2 * 支持基本数据类型及对象 3 * 递归方法 */ 4 function clone(obj) { 5 var o; 6 switch (typeof obj) { 7 case "undefined": 8 break; 9 case "string": o = obj + &q

解决sqoop报错Invalid number; item = ITEM_UNICODE

报错栈: java.sql.SQLException: Invalid number; item = ITEM_UNICODE at com.intersys.jdbc.SysList.getInt(SysList.java:1735) at com.intersys.jdbc.CacheResultSet.getInt(CacheResultSet.java:247) at org.apache.sqoop.lib.JdbcWritableBridge.readInteger(JdbcWrit

1005 Number Sequence

Problem Description A number sequence is defined as follows: f(1) = 1, f(2) = 1, f(n) = (A * f(n - 1) + B * f(n - 2)) mod 7. Given A, B, and n, you are to calculate the value of f(n). Input The input consists of multiple test cases. Each test case co

Minimum Inversion Number 【线段数】

Problem DescriptionThe inversion number of a given number sequence a1, a2, ..., an is the number of pairs (ai, aj) that satisfy i < j and ai > aj. For a given sequence of numbers a1, a2, ..., an, if we move the first m >= 0 numbers to the end of

171. Excel Sheet Column Number

Excel Sheet Column Number Related to question Excel Sheet Column Title Given a column title as appear in an Excel sheet, return its corresponding column number. For example: A -> 1 B -> 2 C -> 3 ... Z -> 26 AA -> 27 AB -> 28 static publi

hdu 5898 odd-even number 数位DP

odd-even number Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 716    Accepted Submission(s): 385 Problem Description For a number,if the length of continuous odd digits is even and the length

Leetcode 202. Happy Number

202. Happy Number Total Accepted: 78171 Total Submissions: 208635 Difficulty: Easy Write an algorithm to determine if a number is "happy". A happy number is a number defined by the following process: Starting with any positive integer, replace t