题意: Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set. get(key) - Get ...
分类:
系统相关 时间:
2016-10-20 00:25:26
阅读次数:
272
题目: Implement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack ...
分类:
其他好文 时间:
2016-10-19 19:31:38
阅读次数:
122
What's Spring Data JPA? According to Pivotal, Spring Data JPA, part of the larger Spring Data family, makes it easy to easily implement JPA based repo ...
分类:
编程语言 时间:
2016-10-19 01:59:29
阅读次数:
223
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 ...
分类:
其他好文 时间:
2016-10-17 00:20:42
阅读次数:
170
问题描述: 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 ...
分类:
其他好文 时间:
2016-10-15 16:29:27
阅读次数:
130
不定期更新leetcode解题java答案。 采用pick one的方式选择题目。 题意为使用Queue队列的方式来代替Stack栈存储的某些方法,其中有pop(),push(),top(),empty()方法。 思路为将栈倒序存储利用Queue的本身函数来进行实现。代码如下: ...
分类:
其他好文 时间:
2016-10-13 11:37:00
阅读次数:
123
UVA - 11987 Almost Union-Find I hope you know the beautiful Union-Find structure. In this problem, you’re to implement something similar, but not iden ...
分类:
其他好文 时间:
2016-10-13 03:05:11
阅读次数:
204
http://poj.org/problem?id=3450 直接暴力枚举第一行的每一个字串,在下面的字符串中查找就行了,注意不符合就及时break。 然后试了一下strstr,发现效率是KMP的3-4倍。 还可以先排序找出最短的字符串,然后暴力,但是sort好像不能对char的二维数组排序,只能用 ...
分类:
其他好文 时间:
2016-10-11 21:30:44
阅读次数:
193
Implement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. 思路:对应检查char是否一样,不一样直接跳出检 ...
分类:
其他好文 时间:
2016-10-10 07:44:12
阅读次数:
135