题目:Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element....
分类:
其他好文 时间:
2015-04-16 01:14:18
阅读次数:
124
Implement atoi to convert a string to an integer....
分类:
编程语言 时间:
2015-04-15 17:08:36
阅读次数:
117
1 基础知识正则表达式是一种描述一段文本模式的方法。到目前为止,我们前面所用到过的精确(文字)匹配也是一种正则表达式。例如,前面我们曾搜索过正则表达式的术语,像"shop"和"delivery"。在PHP中,匹配正则表达式更有点像strstr()匹配,而不像相等比较,因为是在一个字符串的某个位置(如...
分类:
Web程序 时间:
2015-04-15 16:25:23
阅读次数:
155
如题思路:暴力就行了。1ms的暴力!!!别的牛人写出来的,我学而抄之~ 1 int strStr(char* haystack, char* needle) { 2 if (!haystack || !needle) return -1; 3 for (int i =...
分类:
其他好文 时间:
2015-04-15 00:36:25
阅读次数:
146
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations:
get and set.
get(key) - Get the value (will always be positive) of the key if t...
分类:
系统相关 时间:
2015-04-14 13:04:48
阅读次数:
185
参考的http://beebole.com/blog/erlang/how-to-implement-captcha-in-erlang-web-application/,移到cowboy,废话不多说,直接贴代码注意,需要cowboy版本1.0.1创建工程rebar-creator create-a...
分类:
其他好文 时间:
2015-04-14 12:47:24
阅读次数:
152
实现字符串strstr()的功能,即从母串中查找子串第一次出现的位置(序号),没有出现则返回-1.【思路】刚开始学c时就学到过这个例子。不同之处在于,这里参数是string,处理起来要比char*简单。【my code】int strStr(string haystack, string needl...
分类:
其他好文 时间:
2015-04-14 09:51:37
阅读次数:
121
主要是应用了头文件中的strstr函数char * strstr(const char *s1, const char *s2);查找是否存在: 1 #include 2 #include 3 int main(void) 4 { 5 char str3[] = {"abcabcda...
分类:
其他好文 时间:
2015-04-13 20:27:35
阅读次数:
126
Q: Implement pow(x, n).Note: 1. n = int.MinValue, Math.Abs(n) will overflow. For iterative, need to multiply x at the beginning, x value changes.2. n....
分类:
其他好文 时间:
2015-04-12 08:03:11
阅读次数:
134
Binary Search Tree Iterator
Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST.
Calling next() will return the next smallest...
分类:
其他好文 时间:
2015-04-11 00:03:47
阅读次数:
200