题目链接:https://leetcode.com/problems/palindrome-number/description/ Determine whether an integer is a palindrome. An integer is a palindrome when it rea ...
分类:
其他好文 时间:
2018-11-08 16:25:41
阅读次数:
123
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Example 2: Example 3: ...
分类:
其他好文 时间:
2018-11-07 20:08:53
阅读次数:
185
题目:戳这里 题意:给1e5个字符串,问有多少对字符串组合,满足最多只有一种字符有奇数个。 解题思路:每种情况用map存一下就行了。感觉这题自己的代码思路比较清晰,所以写个题解记录一下 附ac代码: 1 #include <bits/stdc++.h> 2 using namespace std; ...
分类:
其他好文 时间:
2018-11-05 19:09:10
阅读次数:
164
Palindrome Partitioning II 这个题意思挺好理解,提供一个字符串s,将s分割成多个子串,这些字串都是回文,要求输出分割的最小次数。 Example:Input: "aab"Output: 1Explanation: The palindrome partitioning [" ...
分类:
其他好文 时间:
2018-11-04 16:15:42
阅读次数:
176
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.Example 1:Input: 121Output: trueEx... ...
分类:
其他好文 时间:
2018-11-03 23:07:47
阅读次数:
174
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 ...
分类:
其他好文 时间:
2018-11-03 14:12:27
阅读次数:
120
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. Note: For the purpose of this problem, w ...
分类:
其他好文 时间:
2018-11-03 14:02:25
阅读次数:
173
https://leetcode.com/problems/palindrome-number/description/ Determine whether an integer is a palindrome. An integer is a palindrome when it reads th ...
分类:
其他好文 时间:
2018-11-02 23:34:06
阅读次数:
114
Consider a positive integer N written in standard notation with k+1 digits a?i?? as a?k???a?1??a?0?? with 0≤a?i??<10for all i and a?k??>0. Then N is p ...
分类:
其他好文 时间:
2018-11-01 16:07:47
阅读次数:
160
一、题目 1、审题 2、分析 给出一个字符串,在此字符串前边添加字符,使得其成为一个回文,求添加最少字符后,所形成的回文。 二、解答 1、思路: ①、为了处理回文字符数为奇数和偶数的问题,先在字符串 s 的每一个字符之间插入字符 '#',并将每个字符放入一个 List 中 ②、下标 index 依次 ...
分类:
其他好文 时间:
2018-11-01 01:02:29
阅读次数:
109