题意:给定i,输出第i个回文数字。 分析:1,2,3,4,……,9 9个 11,12,13,14,……,19 9个 101,111,121,131,141,151,161,171,181,191,202,212,222,232,……,979,989,999 90个 1001,1111,1221,13 ...
分类:
其他好文 时间:
2016-09-25 19:01:57
阅读次数:
178
Determine whether an integer is a palindrome. Do this without extra space.(不要使用额外的空间) Some hints: Could negative integers be palindromes? (ie, -1) If ...
分类:
其他好文 时间:
2016-07-31 20:49:29
阅读次数:
189
1.回文的定义:“回文数”就是正读倒读都一样的整数。如奇数个数字:98789,这个数字正读是98789 倒读也是98789。偶数个数字3223也是回文数。字母 abcba 也是回文。 2. 判断一个字符串是否是回文字符串(Java实现) ...
分类:
编程语言 时间:
2016-07-12 23:16:15
阅读次数:
222
历届试题 回文数字 时间限制:1.0s 内存限制:256.0MB 问题描述 观察数字:12321,123321 都有一个共同的特征,无论从左到右读还是从右向左读,都是相同的。这样的数字叫做:回文数字。 本题要求你找到一些5位或6位的十进制数字。满足如下要求: 该数字的各个数位之和等于输入的整数。 输
分类:
其他好文 时间:
2016-02-05 11:34:58
阅读次数:
112
Determinewhetheranintegerisapalindrome.Dothiswithoutextraspace.classSolution(object):
defnumLen(self,n):
i=1
whileTrue:
n/=10
ifn>0:
i+=1
else:
break
returni
defpow(self,n):
i=1
r=1
whilei<n:
r*=10
i+=1
returnr
defisPalindrome(self,x):
"""
:typex:i..
分类:
编程语言 时间:
2016-01-20 15:47:38
阅读次数:
176
回文数字,简单处理。将数字各位取出,然后用临时变量累加,当累加完成后这个数字等于原来的数字即是回文数。需要注意的是负数不是回文数。class Solution{public: bool isPalindrome(int x) { if(x 0) { ...
分类:
其他好文 时间:
2015-12-07 20:42:30
阅读次数:
170
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:
其他好文 时间:
2015-11-09 13:58:52
阅读次数:
256
字符串问题
1.左旋问题
2.字符包含问题
3.字符匹配KMP
4.编辑距离
5.最大回文子串,公共子串
6.最大公共子序列,回文子序列,上升子序列
7.基本字符串函数实现
8.大整数的加,减,乘,除,模
9.合法回文,数字串
10.正则匹配,最长公共前缀,简化路经
1) 左旋字符串
定义字符串的左旋转操作:把字符串前面的若干个字符移动到字符串的尾部,如把字符串ab...
分类:
其他好文 时间:
2015-08-20 06:48:58
阅读次数:
385
题目:回文数字的判断
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 strin...
分类:
其他好文 时间:
2015-08-13 17:59:30
阅读次数:
129
一、题目Given a singly linked list, determine if it is a palindrome.Follow up:Could you do it in O(n) time and O(1) space?二、解析这个还是一个回文题目,是在做完回文数字后做的。这题要判断...
分类:
其他好文 时间:
2015-08-12 12:57:47
阅读次数:
193