题意: Determine whether an integer is a palindrome. Do this without extra space. (Easy) 分析: 自己考虑的方法是利用Reverse Integer,然后查看rev与x是否相等,注意负数和0的判断(这里WA了一次) 代 ...
分类:
其他好文 时间:
2016-08-04 01:19:56
阅读次数:
182
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. Notice Have you consider that the string ...
分类:
其他好文 时间:
2016-08-03 06:43:44
阅读次数:
161
我的leetcode之旅,该篇章主要完成使用Java实现算法。这是第9篇Palindrome Number...
分类:
编程语言 时间:
2016-08-02 17:09:10
阅读次数:
125
bool isPalindrome(int x) { if (x < 0)return false; // int d = 1; while (x / d >= 10)d *= 10; while (x>0) { int p = x / d;//取首位 int q = x % 10;//取末位 if ...
分类:
其他好文 时间:
2016-08-02 14:51:29
阅读次数:
165
Given a list of unique words. Find all pairs of distinct indices (i, j) in the given list, so that the concatenation of the two words, i.e.words[i] + ...
分类:
其他好文 时间:
2016-08-01 01:44:48
阅读次数:
338
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
题意:给定一个单链表,判断该链表是否回文。要求O(N)的时间复杂度,O(1)的空间复杂度 也是一道easy题目,但是由于数据结构比较渣,之前没有接触过链表反转的问题,在这里记下这个算法。 思路就是找到链表的中间,把后半段链表反转过来,这个复杂度是O(n),在O(n)遍历一遍看看跟前半段是否一样,所以 ...
分类:
其他好文 时间:
2016-07-30 16:37:05
阅读次数:
125
to convert a string, or a portion of a string, into an array of characters palindrome.getChars(0, len, tempCharArray, 0); Creating Format Strings You ...
分类:
编程语言 时间:
2016-07-24 14:45:14
阅读次数:
192
Palindrome Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 60290 Accepted: 20998 Description A palindrome is a symmetrical string, that is, ...
分类:
其他好文 时间:
2016-07-23 16:47:32
阅读次数:
224