http://www.webiyo.com/2011/02/install-mongodb-service-on-windows-7.htmlDownload MongoDBYou can download MongoDB in two different editions viz.32bit Mo...
分类:
数据库 时间:
2014-09-04 20:50:40
阅读次数:
333
传送门Power StringsTime Limit: 3000MSMemory Limit: 65536KDescriptionGiven two strings a and b we define a*b to be their concatenation. For example, if a ...
分类:
其他好文 时间:
2014-09-04 20:48:00
阅读次数:
190
Divide two integers without using multiplication, division and mod operator.思路:取被除数和除数的绝对值求解即可。不过,需要考虑特殊情况:INT_MIN取绝对值仍然是INT_MIN。 1 class Solution { 2...
分类:
其他好文 时间:
2014-09-04 20:46:30
阅读次数:
214
MedianTime Limit: 5 Seconds Memory Limit: 65536 KBThe median of m numbers is after sorting them in order, the middle one number of them if m is even o...
分类:
其他好文 时间:
2014-09-04 16:49:29
阅读次数:
190
LeetCode: Search in Rotated Sorted ArraySuppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6 7 might become 4 ...
分类:
其他好文 时间:
2014-09-03 23:57:17
阅读次数:
467
The Java Message Service(JMS) API is a Java Message Oriented Middleware API for sending messages between two or moreclients . JMS is a part of the Ja....
分类:
编程语言 时间:
2014-09-03 22:40:17
阅读次数:
285
Two SumGiven an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the...
分类:
其他好文 时间:
2014-09-03 22:31:37
阅读次数:
386
LeetCode: Remove Duplicates from Sorted ListGiven a sorted linked list, delete all duplicates such that each element appear only once. For example,Giv...
分类:
其他好文 时间:
2014-09-03 22:27:17
阅读次数:
311
Given a sorted array of integers, find the starting and ending position of a given target value.Your algorithm's runtime complexity must be in the ord...
分类:
其他好文 时间:
2014-09-03 21:06:47
阅读次数:
241
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:
其他好文 时间:
2014-09-03 19:50:37
阅读次数:
156