码迷,mamicode.com
首页 >  
搜索关键字:palindrome    ( 1561个结果
AGC001 D - Arrays and Palindrome【构造】
把回文串的相等关系连一下,发现最后要求的是一笔画问题 注意到奇数长度的中间有一个单独没有连线的,所以a数组至多有两个奇数值 如果没有奇数,那么b在最前面放一个1,然后把a[1]~a[m 1]放上去,这样就是错位着一笔画了,然后剩下一个奇数值连成若干2中间一个1的样子; 如果一个奇数,那么把奇数放到最 ...
分类:其他好文   时间:2019-05-24 23:55:07    阅读次数:227
LeetCode第九题—— Palindrome Number(判断回文数)
题目描述 Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Example 2: Exampl ...
分类:其他好文   时间:2019-05-24 19:02:58    阅读次数:104
hdu4632 Palindrome subsequence 回文子序列个数 区间dp
Palindrome subsequence Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/65535 K (Java/Others)Total Submission(s): 4513 Accepted Submission( ...
分类:其他好文   时间:2019-05-23 22:56:16    阅读次数:161
【LeetCode每天一题】 Valid Palindrome(有效的回文)
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. Note: For the purpose of this problem, w ...
分类:其他好文   时间:2019-05-22 20:46:14    阅读次数:78
125. Valid Palindrome(js)
125. Valid Palindrome Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. Note: For the purp ...
分类:Web程序   时间:2019-05-14 20:41:16    阅读次数:167
Palindrome Number之Java实现
给定一个整数,判断该数值是否为回文数。
分类:编程语言   时间:2019-05-13 10:35:35    阅读次数:111
409. Longest Palindrome(计算一组字符集合可以组成的回文字符串的最大长度)
Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes that can be built with those letters. This ...
分类:其他好文   时间:2019-05-10 23:59:33    阅读次数:228
[leetcode]9. Palindrome Number
简单题,如果不转string要牺牲一些时间复杂度: Submission Detail 11509 / 11509 test cases passed. Status: Accepted Runtime: 128 ms Memory Usage: 13.2 MB Submitted: 1 minut ...
分类:其他好文   时间:2019-05-04 18:44:01    阅读次数:133
PAT 1136 A Delayed Palindrome
1136 A Delayed Palindrome (20 分) 1136 A Delayed Palindrome (20 分) 1136 A Delayed Palindrome (20 分) Consider a positive integer N written in standard n ...
分类:其他好文   时间:2019-04-29 12:49:14    阅读次数:157
Leetcode 8 Two Pointers
Two Pointers 1. 28. Implement strStr() 用 i 记录haystack偏移量,j 记录 needle 的偏移量。 2. 125. Valid Palindrome 只需要建立两个指针,head 和 tail, 分别从字符的开头和结尾处开始遍历整个字符串,如果遇到非 ...
分类:其他好文   时间:2019-04-26 22:39:50    阅读次数:189
1561条   上一页 1 ... 15 16 17 18 19 ... 157 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!