码迷,mamicode.com
首页 >  
搜索关键字:palindrome    ( 1561个结果
leetCode 125. Valid Palindrome 字符串
125.ValidPalindromeGivenastring,determineifitisapalindrome,consideringonlyalphanumericcharactersandignoringcases.Forexample,"Aman,aplan,acanal:Panama"isapalindrome."raceacar"isnotapalindrome.Note:Haveyouconsiderthatthestringmightbeempty?Thisisagoodquestiont..
分类:其他好文   时间:2016-08-11 16:08:32    阅读次数:138
动态规划求字符串的回文子串
string s是输入字符串, palindrome[i][j]表示s.substr(i, j - i + 1)是否为回文。算法时间复杂度和空间复杂度都为O(n^2)。 ...
分类:其他好文   时间:2016-08-11 14:24:22    阅读次数:126
Gym 100952H Special Palindrome 非递减的回文串、dfs打表、查数列网站OEIS
非递减的回文串、打表 比赛结束后看了下public 的代码就我们队是打表过的, 别人都是正规的过的, ⊙﹏⊙‖∣尴尬 分奇偶用 dfs 搞出非递减的左半边串, 然后求出这个的和 ans[sum + i]++; 对于偶数个的直接dfs, 对于奇数的则枚举mid, 然后依次dfs 然后只打了前ans[50] 及以前的, 因为后面的比较大时间不够的, 所以打出前50的表然后到数列网站 OEIS 查了一下, 还真有,?? 所以把那前250个ans贴到 txt里, 然后写一个中间程序 把这些数据 转换成 printf...
分类:Web程序   时间:2016-08-10 06:36:16    阅读次数:390
9. Palindrome Number
...
分类:其他好文   时间:2016-08-09 13:42:35    阅读次数:138
(LeetCode)Palindrome Number -- 判断回文数
(LeetCode)Palindrome Number -- 判断回文数...
分类:其他好文   时间:2016-08-09 10:48:00    阅读次数:177
【Gym 100971K】Palindromization
Mihahim has a string s. He wants to delete exactly one character from it so that the resulting string would be a palindrome. Determine if he can do it ...
分类:其他好文   时间:2016-08-08 14:25:27    阅读次数:131
POJ 3280:Cheapest Palindrome 区间DP好题
Cheapest Palindrome 题目链接: http://poj.org/problem?id=3280 题意: 给出一个只由小写字母组成的串,可以添加或删除一些字母(添加和删除都需要花费且花费不同),求将这个串改变成一个回文串的最小花费。 题解: 设dp[i][j]是将区间[i,j]改变成 ...
分类:其他好文   时间:2016-08-08 12:34:15    阅读次数:99
LeetCode 125. Valid Palindrome
LeetCode 125. Valid Palindrome ...
分类:其他好文   时间:2016-08-08 11:01:19    阅读次数:164
Hdu5785-Interesting(回文串处理)
Problem Description Alice get a string S. She thinks palindrome string is interesting. Now she wanna know how many three tuple (i,j,k) satisfy 1≤i≤j<k ...
分类:其他好文   时间:2016-08-07 10:59:12    阅读次数:175
leetcode4 Valid Palindrome回文数
Valid Palindrome回文数 whowhoha@outlook.com Question: Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignor ...
分类:其他好文   时间:2016-08-06 09:57:43    阅读次数:121
1561条   上一页 1 ... 60 61 62 63 64 ... 157 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!