International Morse Code defines a standard encoding where each letter is mapped to a series of dots and dashes, as follows: "a" maps to ".-", "b" map ...
分类:
其他好文 时间:
2018-07-19 23:29:13
阅读次数:
302
redis单机安装0.安装依赖包 yum -y install lrzsz gcc unzip autoconf docbook-style-xsl1.下载redis源码 redis.io2.上传到服务器并编译,安装 rz redis-4.0.10.tar.gz  
分类:
其他好文 时间:
2018-07-18 14:07:52
阅读次数:
180
class Solution { public List letterCasePermutation(String S) { List result = new ArrayList(); char[] array = S.toCharArray(); dfs(array, result, 0); r... ...
分类:
其他好文 时间:
2018-07-18 01:16:44
阅读次数:
164
css3为了区分伪类和伪元素,伪元素采用双冒号写法。 常见伪类——:hover,:link,:active,:target,:not(),:focus。 常见伪元素——::first-letter,::first-line,::before,::after,::selection。 ::before ...
分类:
Web程序 时间:
2018-07-17 14:21:16
阅读次数:
314
Description Computing the exact number of ways that N things can be taken M at a time can be a great challenge when N and/or M become very large. Chal ...
分类:
其他好文 时间:
2018-07-16 11:09:50
阅读次数:
118
Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. A mapping of digit to le ...
分类:
其他好文 时间:
2018-07-15 17:41:21
阅读次数:
322
Description 以$1$ 为根 的 $n$ 个节点的树,每条边有一个颜色 $x$,求每一个点的子树内的好的路径的最长长度 一条路径被定义为好的当且仅当把所有经过的边的字母经过排列之后可以变成回文 "题面" Solution 理解了一下 $dsu\,on\,tree$,相比普通的启发式,省去了 ...
分类:
其他好文 时间:
2018-07-15 11:06:54
阅读次数:
191
1、题目描述 2、问题分析 可以使用递归的方法解决,参考了别人的答案才写出来的。 3、代码 ...
分类:
其他好文 时间:
2018-07-14 19:29:33
阅读次数:
222
1 typedef struct letter{ 2 int finished = 0; 3 char le; 4 letter *son, *ne; 5 letter():le('\0'),son(NULL),ne(NULL){}; 6 }letter,*pointer; 7 8 struct T... ...
分类:
其他好文 时间:
2018-07-12 16:34:35
阅读次数:
134
In the following, every capital letter represents some hexadecimal digit from 0 to f. The red-green-blue color "#AABBCC" can be written as "#ABC" in s ...
分类:
其他好文 时间:
2018-07-11 21:25:43
阅读次数:
223