非常challenge的一道题,考虑的情况特别多,当考虑到了之后,还要考虑怎么处理。题目要求是,给你两个字符串,判断正则字符串能不能表示待检字符串,一个是"aabb",另外一个是正则表达式"a*.*"。该正则表达式只有两种特殊符号,一种是'.',代表的是任意字符,另一种是'*',它单独出现没有任何意
分类:
其他好文 时间:
2016-02-29 07:05:18
阅读次数:
225
Regular Expression Modifiers: Option FlagsRegular expression literals may include an optional modifier to control various aspects of matching. The mod...
分类:
其他好文 时间:
2016-02-26 18:46:22
阅读次数:
178
因为leetcode的题号会变动,所以先记录一下每一题对应的内容。 10 Regular Expression Matching 21.6% Hard 9 Palindrome Number 30.9% Easy 8 String to Integer (atoi) 13.3% Easy 7 Rev
分类:
其他好文 时间:
2016-02-25 22:37:35
阅读次数:
386
用动态规划 思想是:每次计算后都保存当前的运行结果 f[i][j]表示串s[0···i-1]与从串p[0···j-1]的比较结果 首先,f[0][0]表示两空串比较结果为真 f[0][0]=true; 其次,当原串不为空时,无论p串是什么结果都为真,即f[i][0]=false; 而当原串为空时,需
分类:
其他好文 时间:
2016-02-24 20:44:37
阅读次数:
156
从2月14日开始,上传程序的同学可能会遇到提示上传失败的提示. 并且打开自己的钥匙串,发现所有的证书全部都显示此证书签发者无效. 出现以下情况: Failed to locate or generate matching signing assetsXcode attempted to locate
分类:
移动开发 时间:
2016-02-17 11:05:35
阅读次数:
628
这道题和之前的那道Regular Expression Matching有点相似,第一反应是跟之前一样,用递归来做 bool doMatch(char *s,char *p) { if (*p == '\0') return *s == '\0'; if(*p == '*') { while(*s!
分类:
其他好文 时间:
2016-02-04 00:20:14
阅读次数:
175
String Matching: Levenshtein distance Purpose: to use as little effort to convert one string into the other Intuition behind the method: replacement,
分类:
编程语言 时间:
2016-02-02 16:23:40
阅读次数:
245
As we type in the search textbox, all the columns in the table must be searched and only the matching rows should be displayed. Script.js : var app =
分类:
Web程序 时间:
2016-02-01 02:09:18
阅读次数:
148
在运行写好的cocos的demo时候,安装出现以下问题: 后来发现是因为自己用cygwin生成的x86的.so文件跟自己的魅族3机器CPU不适配!!! 参考:http://stackoverflow.com/questions/24572052/install-failed-no-matching-
分类:
其他好文 时间:
2016-01-27 19:39:42
阅读次数:
151
壹Try胜仟言别忘了 import scala.util.matching._scala> var s = "a_b_c_d_e"s: String = a_b_c_d_escala> val regex = new Regex("^([^_]*)_([^_]*)_([^_]*)_(.*)$")re...
分类:
其他好文 时间:
2016-01-21 19:24:07
阅读次数:
109