Here is the useful list for reading about comfort zone:http://blog.pickcrew.com/getting-out-of-your-comfort-zone-why-its-hard-and-why-you-should/Here ...
分类:
其他好文 时间:
2015-01-20 19:53:00
阅读次数:
249
使用jmeter执行java协议测试结束时会提示:he JVM should haveexitted but did not ,jmeter2.11以后的可以 通过设置: jmeterengine.force.system.exit=true来解决。
分类:
编程语言 时间:
2015-01-20 15:15:55
阅读次数:
168
Analysis:For target>A[mid]:There is only one case that we should seach [start,mid-1]: Peak is in the left, i.e., A[start]>A[mid] && target>=A[start].F...
分类:
其他好文 时间:
2015-01-20 07:49:37
阅读次数:
203
今天在服务器上访问phpMyAdmin,出现这样的提示 Wrong permissions on configuration file, should not be world writable!查资料一看,原来phpMyAdmin要在755权限下才能正常工作(777不行)。所以解决办法也就来...
分类:
其他好文 时间:
2015-01-19 20:31:27
阅读次数:
124
题目:
Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.
For example,
Given n = 3,
You should return the following matrix:
[
[ 1, 2, 3 ],
[ 8, 9, ...
分类:
编程语言 时间:
2015-01-19 19:13:19
阅读次数:
189
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
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is.You...
分类:
其他好文 时间:
2015-01-19 15:56:02
阅读次数:
161
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
题目:
Given a linked list, swap every two adjacent nodes and return its head.
For example,
Given 1->2->3->4, you should return the list as 2->1->4->3.
Your algorithm should use only constant s...
分类:
编程语言 时间:
2015-01-19 09:26:40
阅读次数:
232
Given an unsorted integer array, find the first missing positive integer.
For example,
Given [1,2,0] return 3,
and [3,4,-1,1] return 2.
Your algorithm should run in O(n) time and uses constant...
分类:
其他好文 时间:
2015-01-18 15:47:14
阅读次数:
126