题目要求: 判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。 这段代码就可以 ...
分类:
其他好文 时间:
2018-06-05 16:25:26
阅读次数:
132
Problem description A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings ...
分类:
其他好文 时间:
2018-06-03 14:31:13
阅读次数:
157
class Solution { public: bool validPalindrome(string s) { int i = 0, j = s.length() - 1; while (i < j) { if (s[i] == s[j]) { i++; j--; ... ...
分类:
其他好文 时间:
2018-06-02 00:31:47
阅读次数:
167
Valid Palindrome Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. Note: For the purpose o ...
分类:
其他好文 时间:
2018-06-01 10:56:39
阅读次数:
164
vector处理字符串,老司机,你值得拥有 ...
分类:
其他好文 时间:
2018-05-27 12:05:23
阅读次数:
127
Valid Palindrome II Given a non-empty string s, you may delete at most one character. Judge whether you can make it a palindrome. Example 1: Example 2 ...
分类:
其他好文 时间:
2018-05-25 11:13:51
阅读次数:
188
判定链表是否为回文 方法一:借助一个栈,将链表节点值全部压入栈中,再弹出,依次比较。本质是把链表节点值逆置,然后与原链表节点值比较。全部相等则为回文。 方法二:先计算链表长度,把前半部分链表逆置,然后比较新链和剩下那段链节点值是否依次相等。 ...
分类:
其他好文 时间:
2018-05-24 16:36:51
阅读次数:
138
前后指针向中间靠拢,扫描到数字或字母就比较,不等则返回false。等则继续扫描,直至前指针越过后指针,输出true。 ...
分类:
其他好文 时间:
2018-05-21 12:38:13
阅读次数:
140
In mathematics, a subsequence is a sequence that can be derived from another sequence by deleting some elements without changing the order of the rema ...
分类:
其他好文 时间:
2018-05-19 20:41:12
阅读次数:
167
dp or memo recursion 1. dp formulation 2. ispalindrome based on the nature structure ...
分类:
其他好文 时间:
2018-05-19 11:08:20
阅读次数:
204