码迷,mamicode.com
首页 >  
搜索关键字:palindrome    ( 1561个结果
[LeetCode] 9. Palindrome Number
...
分类:其他好文   时间:2016-08-05 11:42:40    阅读次数:125
LeetCode9 Palindrome Number
题意: 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
[LintCode] Valid Palindrome 验证回文字符串
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
leetcode09-Palindrome Number之Java版本
我的leetcode之旅,该篇章主要完成使用Java实现算法。这是第9篇Palindrome Number...
分类:编程语言   时间:2016-08-02 17:09:10    阅读次数:125
Palindrome Number
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
Palindrome Pairs
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
Leetcode 9. Palindrome Number(判断回文数字)
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
Leetcode 234 Palindrome Linked List
题意:给定一个单链表,判断该链表是否回文。要求O(N)的时间复杂度,O(1)的空间复杂度 也是一道easy题目,但是由于数据结构比较渣,之前没有接触过链表反转的问题,在这里记下这个算法。 思路就是找到链表的中间,把后半段链表反转过来,这个复杂度是O(n),在O(n)遍历一遍看看跟前半段是否一样,所以 ...
分类:其他好文   时间:2016-07-30 16:37:05    阅读次数:125
Java String
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
POJ1159:动态规划
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
1561条   上一页 1 ... 61 62 63 64 65 ... 157 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!