Reverse a linked list from position m to n. Do it in-place and in one-pass.For example:Given 1->2->3->4->5->NULL, m = 2 and n = 4,return 1->4->3->2->5...
分类:
其他好文 时间:
2014-08-19 22:08:15
阅读次数:
238
阅读ArrayBlockingQueue源码,很容易知道有界阻塞队列的长度至少为1,也就是至少能缓存下一个数据。SynchronousQueue的javadoc文档提到A synchronous queue does not have any internal capacity, not even a capacity of one.也就说同步队列的容量是0,不会缓存数据。
长度为1的阻塞队列和...
分类:
其他好文 时间:
2014-08-19 20:56:35
阅读次数:
298
Fast Matrix Calculation
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)
Total Submission(s): 161 Accepted Submission(s): 92
Problem Description
One...
分类:
其他好文 时间:
2014-08-19 20:55:20
阅读次数:
326
An array A[1...n] contains all the integers from 0 to n except for one number which is missing.In this problem, we cannot access an entire integer in ...
分类:
其他好文 时间:
2014-08-19 18:49:45
阅读次数:
251
Maximum SubarrayFind the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array[?...
分类:
其他好文 时间:
2014-08-19 18:12:55
阅读次数:
279
我在页面上一点击查询,console下面就有如下的红色文字:
2014-8-19 15:09:27 org.apache.jasper.compiler.TldLocationsCache tldScanJar
信息: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for ...
分类:
Web程序 时间:
2014-08-19 16:37:14
阅读次数:
145
Color Me LessTime Limit:1000MS Memory Limit:10000KB 64bit IO Format:%I64d & %I64uSubmit StatusDescriptionA color reduction is a mapping from a set of discrete colors to a smaller one. The solu...
分类:
其他好文 时间:
2014-08-19 14:37:44
阅读次数:
195
这个问题看了看,没看懂,搁置。
约瑟夫环问题(Josephus)
用户输入M,N值,从1至N开始顺序循环数数,每数到M输出该数值,直至全部输出。写出C程序。(约瑟夫环问题 Josephus)
解法一(My Solution):
思想:建立一个有N个元素的循环链表,然后从链表头开始遍历并记数,如果计数i==m(i初始为1)踢出元素,继续循环,当当前元素与下一元素相同时退出循环。
代...
分类:
其他好文 时间:
2014-08-19 14:33:14
阅读次数:
199
微软近期Open的职位:Bing Index Serve team is hiring! We are one of the core teams in Bing serving more than 30% of worldwide search traffic with gigantic scal...
分类:
其他好文 时间:
2014-08-19 14:19:44
阅读次数:
282
微软中国在上海举办新闻发布会,正式宣布Xbox One将于9月23日在中国开始销售,定价3699元起。这款早在2001年就发布的电视游戏机终于在经历了14年的等待后,进军中国大陆市场。此次Xbox One入华,最具争议的是定价。微软当天宣布,Xbox One国行版分为两个版本,3699元的家庭娱.....
分类:
其他好文 时间:
2014-08-19 12:45:24
阅读次数:
253