码迷,mamicode.com
首页 >  
搜索关键字:palindrome    ( 1561个结果
Palindrome Pairs
1. j can reach word[i].length() since it can form an empty string; 2. to aviod duplication ( empty string can cause two found for a pair ,ex [abcd, db ...
分类:其他好文   时间:2016-07-01 16:22:21    阅读次数:130
Codeforces 159D Palindrome pairs
http://codeforces.com/problemset/problem/159/D 题目大意: 给出一个字符串,求取这个字符串中互相不覆盖的两个回文子串的对数。 思路:num[i]代表左端点在i这个位置的回文串个数,然后用树状数组维护sum[i],代表回文串右端点小于等于i的回文串数,总复 ...
分类:其他好文   时间:2016-06-29 21:54:33    阅读次数:143
带标点的回文串判断
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example,"A man, a plan, a canal: Pan ...
分类:其他好文   时间:2016-06-29 17:17:48    阅读次数:166
字符串的最佳分割数
Given a string s, partition s such that every substring of the partition is a palindrome. Return the minimum cuts needed for a palindrome partitioning ...
分类:其他好文   时间:2016-06-28 18:38:02    阅读次数:133
125. Valid Palindrome
题目: Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example,"A man, a plan, a canal: ...
分类:其他好文   时间:2016-06-25 12:17:47    阅读次数:171
267. Palindrome Permutation II
...
分类:其他好文   时间:2016-06-25 12:17:22    阅读次数:132
266. Palindrome Permutation
...
分类:其他好文   时间:2016-06-25 10:46:39    阅读次数:154
LeetCode 125. Valid Palindrome
https://leetcode.com/problems/valid-palindrome/ Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring ...
分类:其他好文   时间:2016-06-23 23:47:47    阅读次数:186
LeetCode-9-Palindrome Number
Determine whether an integer is a palindrome. Do this without extra space. 判断一个整数是否是回文数。 思路:求出数字abcd的逆序的数值dcba,如果是回文数的话,那么abcd==dcba。 时间复杂度:O(n) pytho ...
分类:其他好文   时间:2016-06-22 23:42:39    阅读次数:304
131. Palindrome Partitioning
简直开心,一遍通过,时间不是特别好,我觉得是isPalindrome用的是StirngBuilder方法不是数学方法的原因 不过很开心!! ...
分类:其他好文   时间:2016-06-22 06:54:32    阅读次数:131
1561条   上一页 1 ... 63 64 65 66 67 ... 157 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!