题目描述: 给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。 给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。 示例: 输入:"23"输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"]. 解题思路 ...
分类:
其他好文 时间:
2020-02-08 11:32:30
阅读次数:
68
[TOC] "Leetcode 3" 问题描述 例子 方法 保留一个将字符串中的字符存储为键并将其位置存储为值的hashmap,并保留两个定义最大子字符串的指针。移动右指针以浏览字符串,同时更新hashmap。如果字符已经在hashmap中,则将左指针移到最后找到的相同字符的右边。请注意,两个指针只 ...
分类:
其他好文 时间:
2020-02-08 09:44:27
阅读次数:
54
leedcode 10. 正则表达式匹配 递归解法,时间复杂度比较高,后面要尝试改成动规 bool end_or_not(string p) { for(int i=0;i<p.size();i+=2) { if(((p[i]>='a'&&p[i]<='z')||p[i]=='.')&&p[i+1] ...
分类:
编程语言 时间:
2020-02-07 20:49:41
阅读次数:
60
static void Main(string[] args) { string s = "ABCD"; //1:字符就像数组一样,可以通过下标访问 Console.WriteLine(s[0]); // 输出"A"; Console.WriteLine(s.Length); // 输出4 //2: ...
PAT 1002 写出这个数 题目: 读入一个正整数 n,计算其各位数字之和,用汉语拼音写出和的每一位数字。 输入格式: 每个测试输入包含 1 个测试用例,即给出自然数 n 的值。这里保证 n 小于 10100。 输出格式: 在一行内输出 n 的各位数字之和的每一位,拼音数字间有 1 空格,但一行中 ...
分类:
其他好文 时间:
2020-02-06 20:13:35
阅读次数:
55
传送门 A数学题统计 #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #define mod 1000000007 long long m,n; long long sum; int main() { ...
分类:
其他好文 时间:
2020-02-05 23:20:01
阅读次数:
89
expr命令一般用于整数值,但也可用于字符串 手工命令行计算器 [root@node01 ~]# expr 10 + 9 19 [root@node01 ~]# expr 30 \* 3 90 [root@node01 ~]# expr 30 / 3 / 2 5 [root@node01 ~]# a ...
分类:
其他好文 时间:
2020-02-05 18:00:06
阅读次数:
72
Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answer ...
分类:
其他好文 时间:
2020-02-05 13:42:39
阅读次数:
59
whereSql := 'substr(f_billNumber,1,4)=' + QuotedStr(yymm) else whereSql := 'left(f_billNumber,4)=' + QuotedStr(yymm); near syntax errorinsert into [t_ ...
分类:
数据库 时间:
2020-02-05 11:52:01
阅读次数:
122
Given a list of unique words, find all pairs of distinct indices (i, j) in the given list, so that the concatenation of the two words, i.e. words[i] + ...
分类:
其他好文 时间:
2020-02-04 10:47:17
阅读次数:
71