Valid PalindromeGiven a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.Example"A man, a plan, a ...
分类:
其他好文 时间:
2015-12-06 17:29:37
阅读次数:
168
题目:Given a strings, return all the palindromic permutations (without duplicates) of it. Return an empty list if no palindromic permutation could be fo...
分类:
其他好文 时间:
2015-12-06 01:49:57
阅读次数:
200
题目:Given a string, determine if a permutation of the string could form a palindrome.For example,"code"-> False,"aab"-> True,"carerac"-> True.Hint:Cons...
分类:
其他好文 时间:
2015-12-05 14:15:01
阅读次数:
122
题目大意:给定一个整型(即int),判断其是否为回文数首先负数肯定不是回文了,只要判断正数就好。将数字不断%10/10一个个取出来,放到一个数组中。然后再从数组两头开始往中间比较,有不等的马上返回false就好。 public static boolean isPalindrome(int x) {...
分类:
其他好文 时间:
2015-12-04 01:05:42
阅读次数:
162
原题链接在这里:https://leetcode.com/problems/valid-palindrome/注意在用Character.isLetter(s.charAt(i)) 或者 Character.isDigit(s.charAt(i))前需检验 i 是否index out of boun...
分类:
Web程序 时间:
2015-12-03 13:26:38
阅读次数:
144
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.Example"A man, a plan, a canal: Panama" i...
分类:
其他好文 时间:
2015-12-02 06:38:47
阅读次数:
115
http://codeforces.com/problemset/problem/600/C;题意:给你一个小写字母组成的英文串,将它转换为回文串,要求,改变的字母的个数最小,移动字母不算改变字母。所得的串字典序是最小的。最后输出所得到的串。思路:要求改变的字母数最小那么用贪心的思想,就把原来的字母...
分类:
其他好文 时间:
2015-11-30 20:31:16
阅读次数:
152
递归做法public class Solution { List result = new ArrayList(); public List generatePalindromes(String s) { HashMap map = new HashMap(); ...
分类:
其他好文 时间:
2015-11-30 08:29:03
阅读次数:
158
反转后一半,然后判断,不过这样子会改变输入的数据,感觉不太好。也可以用一个栈,但是那样的话空间复杂度就不符合标准了。/** * Definition for singly-linked list. * public class ListNode { * int val; * List...
分类:
其他好文 时间:
2015-11-29 10:43:00
阅读次数:
171
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a plan, a canal: Pana...
分类:
其他好文 时间:
2015-11-29 00:52:53
阅读次数:
154