:target是什么?MDN是这样描述的::target
The :target pseudo-class represents the unique element, if any, with >an id matching the fragment identifier of the URI of the document.
在document中,可以设置锚链接,举个粟子:<a href="...
分类:
其他好文 时间:
2015-06-01 14:49:49
阅读次数:
138
烧脑神题public class Solution { public boolean isMatch(String s, String p) { // 反正我是想不出来 http://www.cnblogs.com/springfor/p/3893593.html ...
分类:
其他好文 时间:
2015-05-29 08:34:13
阅读次数:
101
Regular Expression Matching
题目:
Implement regular expression matching with support for ‘.’ and ‘*’.
‘.’ Matches any single character.
‘*’ Matches zero or more of the preceding element.
Th...
分类:
其他好文 时间:
2015-05-28 21:31:52
阅读次数:
197
1、购买SSL证书,参考:http://www.cnblogs.com/yipu/p/3722135.html2、IIS7 / IIS 7.5 下绑定 HTTPS 网站(购买Wildcard SSL泛域名证书可绑定多个子域名)参考上文3、下载安装URL重写模块:Microsoft URL Rewri...
分类:
Web程序 时间:
2015-05-28 12:26:17
阅读次数:
179
On条件(在“A left join b on conditional_expr”)决定如何从table B 中检索数据行(Matching-State); 如果B中没有行匹配On 条件,额外的B的所有数据列被设为null; 如果Matching-Stage阶段,where语句的任何限制条件...
分类:
数据库 时间:
2015-05-23 16:42:59
阅读次数:
226
class Solution {public: bool isMatchCore(string s, string p,int indexS,int indexP){ if (s[indexS] == '\0' && p[indexP] == '\0') return true; if (s...
分类:
其他好文 时间:
2015-05-20 23:54:28
阅读次数:
150
正则表达式就是一个用来描述字符模式的对象。它被用来在文本中执行模式匹配(pattern-matching)以及”查找-替换”(search-and-replace)的任务。javascript中正则的风格类似Perl中正则的风格。创建var reg = new RegExp(pattern,modi...
分类:
编程语言 时间:
2015-05-20 17:43:08
阅读次数:
151
今天自己独立的解决了好几个问题,很开心。
第一个就是关于证书的问题:
之前项目经理让我们把/user/Vicky/Library/MobileDevice/Provisioning Profiles 清空,在安装最新的证书;
但是安装的过程中,总是会出现这样的error:
1.No codesigning identities(i.e. XXX) found matching the ...
分类:
其他好文 时间:
2015-05-19 10:51:30
阅读次数:
150
网址:https://leetcode.com/problems/regular-expression-matching/
题意:
输入的字符串是否被规则序列完全覆盖.
其中 . 代表一个任意字符
其中 * 代表任意个任意字符
分析:
其实就是对正则的一部分实现.
都是很实用的技能和技巧.
难点在于对于*的取舍.
*可以是0,也可以是任意值,但却未必是最大值.
尝试用迭代法做....
分类:
其他好文 时间:
2015-05-18 16:49:11
阅读次数:
127
DescriptionIn graph theory, a matching or independent edge set in a graph G = (V , E) is a set of edges ME such that no two edges in the matching M sh...
分类:
其他好文 时间:
2015-05-17 12:04:26
阅读次数:
127