DescriptionStandard web browsers contain features to move backward and forward among the pages recently visited. One way to implement these features i...
分类:
其他好文 时间:
2015-01-26 20:37:42
阅读次数:
138
Requirement
Implement a custom social newsfeed, user can retrieve/new/reply/like/unlike a post, and ability to auto retrieve hastags when input "#". you would be notice that the UI is same as the de...
分类:
其他好文 时间:
2015-01-26 19:25:27
阅读次数:
195
Implement atoi to convert a string to an integer.
Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input ca...
分类:
其他好文 时间:
2015-01-26 19:20:02
阅读次数:
136
原题地址因为是道简单题,所以最简单的字符串匹配应该也能过,但还是练习一下KMP算法为好。KMP算法的介绍可以参考这篇以后有时间试试Boyer-Moore算法代码: 1 int strStr(char *haystack, char *needle) { 2 if (!needle[0]) ret.....
分类:
其他好文 时间:
2015-01-26 13:30:49
阅读次数:
147
Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.Update (2014-11-02):The si...
分类:
其他好文 时间:
2015-01-25 22:19:38
阅读次数:
171
标题:Implement strStr()通过率:21.8%难度:简单Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of ...
分类:
其他好文 时间:
2015-01-23 13:10:56
阅读次数:
97
1. Addition to existing stock is NOT allowed to implement FIFO concept . Because FIFO is carried out based on the goods receipt date , if there is an ...
分类:
其他好文 时间:
2015-01-20 19:56:58
阅读次数:
210
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
Design and implement a TwoSum class. It should support the following operations:addandfind.add- Add the number to an internal data structure.find- Fin...
分类:
其他好文 时间:
2015-01-19 15:39:47
阅读次数:
195
commit80f54dc1ab629289946237227e5706e19b7e7594
authordcheng Wed Jan 07 19:13:49 2015
committerCommit bot Wed Jan 07 19:15:28 2015
Implement the Clang plugin as a RecursiveASTVisitor.
The current...
分类:
编程语言 时间:
2015-01-19 14:32:05
阅读次数:
177