原题地址这道题坑了我很久,有一组测试数据在本地跑结果是true,但是在Leetcode服务器上跑结果就是false,让我百思不得其解。后来费了好久才终于找到原因,原来还是自己的代码不够严谨,为了让代码简洁一些,有一个判断语句默认空闲内存都是0,结果就错了。这道题没有什么技巧,匹配的思路很直观,如果当...
分类:
其他好文 时间:
2015-01-20 11:52:58
阅读次数:
180
正则表达式(Regular Expression)
正则表达式,又称正规表示式、正规表示法、正规表达式、规则表达式、常规表示法(英语:Regular Expression,在代码中常简写为regex、regexp或RE)。
正则表达式使用单个字符串来描述、匹配一系列符合某个句法规则的字符串。在很多文本编辑器里,正则表达式通常被用来检索、替换那些符合某个模式的文本。
元字符
字符...
分类:
其他好文 时间:
2015-01-19 17:18:39
阅读次数:
214
Implement regular expression matching with support for '.' and
'*'.
'.' Matches any single character.
'*' Matches zero or more of the preceding element.
The matching should cover the entire inp...
分类:
编程语言 时间:
2015-01-19 17:17:43
阅读次数:
142
背景:1WA__for循环限制条件不正确,应该是把最中间那个词也判断一下。2WA__list表建立错误,在T之前多了一个空格。3WA——ans内单词拼写错误!!
学习:1.对于输出复杂,建表复杂的题要格外小心,什么拼写错误之类的别犯!!
2.const char* ans[]={"is not a palindrome.","is a regular palindrome.","is a mi...
分类:
其他好文 时间:
2015-01-19 12:52:53
阅读次数:
117
# -*- coding: utf8 -*-'''https://oj.leetcode.com/problems/regular-expression-matching/Implement regular expression matching with support for '.' and '...
分类:
编程语言 时间:
2015-01-17 06:25:11
阅读次数:
212
http://blog.csdn.net/liyi_/article/details/42736903Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*...
分类:
其他好文 时间:
2015-01-15 12:32:25
阅读次数:
138
# -*- coding: utf8 -*-'''https://oj.leetcode.com/problems/regular-expression-matching/Implement regular expression matching with support for '.' and '...
分类:
编程语言 时间:
2015-01-15 00:11:02
阅读次数:
215
经过了一个多月的时间,今天终于可以回到正轨了,继续开始刷CF。
题目大意:
给出一个只有括号的字符串,求最长“匹配”子串的长度和数量。
解题思路:
设置数组记录匹配括号段的开头。
下面是代码:
#include
#include
#include
#include
#include
#include
#include
#include
#incl...
分类:
其他好文 时间:
2015-01-14 14:17:58
阅读次数:
124
Implement regular expression matching with support for '.' and '*'.
'.' Matches any single character.
'*' Matches zero or more of the preceding element.
The matching should cover the entire input st...
分类:
其他好文 时间:
2015-01-14 12:50:05
阅读次数:
162
https://docs.python.org/2/howto/regex.htmlIdentifiers:\d any number\D anything but a number\s space\S anything but a space\w any character\W any...
分类:
其他好文 时间:
2015-01-14 00:34:01
阅读次数:
268