码迷,mamicode.com
首页 >  
搜索关键字:letter    ( 1667个结果
tomcat双向认证服务器部署
一、准备环境搭建平台:linux+apache-tomcat-7.0.35.tar.gz二、生成CA证书创建目录:#mkdircaclientserver目前不使用第三方权威机构的CA来认证,自己充当CA的角色。2.1创建私钥#opensslgenrsa-outca/ca-key.pem10242.2创建证书请求#opensslreq-new-outca/ca-req.csr-keyca/ca-k..
分类:其他好文   时间:2015-08-11 19:06:37    阅读次数:119
Longest Substring Without Repeating Characters
问题描述Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letter...
分类:其他好文   时间:2015-08-11 15:55:30    阅读次数:88
::before和::after伪元素的用法
一、介绍css3为了区分伪类和伪元素,伪元素采用双冒号写法。常见伪类——:hover,:link,:active,:target,:not(),:focus。常见伪元素——::first-letter,::first-line,::before,::after,::selection。::befor...
分类:其他好文   时间:2015-08-11 15:46:57    阅读次数:132
Add and Search Word - Data structure design -- leetcode
Design a data structure that supports the following two operations: void addWord(word) bool search(word) search(word) can search a literal word or a regular expression string containing only letter...
分类:其他好文   时间:2015-08-09 12:36:57    阅读次数:120
前缀(字典树)
描述:给定N个字符串,求这些字符串的最长公共前缀长度与字符串的个数的乘积的最大值。 范围:1 2 using namespace std; 3 4 struct letter{ 5 char d;//节点存的字符 6 int son,bro;//左孩子和右兄弟,都是节点编号...
分类:其他好文   时间:2015-08-08 22:37:04    阅读次数:144
LeetCode (17)Letter Combinations of a Phone Number
题目Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the telephone buttons) is given below.Input:Digit string “23”...
分类:其他好文   时间:2015-08-07 22:23:27    阅读次数:195
Oulipo HDU杭电1686【KMP】
Problem Description The French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter 'e'. He was a member of the Oulipo group. A quote from the book: Tout avait Pa...
分类:其他好文   时间:2015-08-07 16:12:19    阅读次数:127
Quick work
原文 Dan Robinson has been worried all week. Last Tuesday he received a letter from the local police. In the letter he was asked to call at the station. Dan wondered why he was wanted by the police...
分类:其他好文   时间:2015-08-06 15:20:59    阅读次数:148
[LeetCode] Valid Anagram
Hash TableThis idea uses a hash table to record the times of appearances of each letter in the two stringssandt. For each letter ins, it increases the...
分类:其他好文   时间:2015-08-01 15:40:34    阅读次数:110
LeetCode#17 Letter Combinations of a Phone Number
Problem Definition:Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just l...
分类:其他好文   时间:2015-07-30 16:24:09    阅读次数:151
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!