Follow up for "Unique Paths":
Now consider if some obstacles are added to the grids. How many unique paths would there be?
An obstacle and empty space is marked as 1 and 0 respectively
in the...
分类:
其他好文 时间:
2014-11-21 10:41:42
阅读次数:
138
本人使用oracle时间不多,但是在项目中积累了一些经验教训,记录于此,以方便自己和他人解决类似的问题。 1.temp space超出限制的问题 问题场景:
在复杂的ETL query中,有时候一张fact表逻辑复杂,来自多张表的join,我习惯写成CTE的方式, 但CTE是放在内存中的,所以比较快...
分类:
数据库 时间:
2014-11-21 08:02:52
阅读次数:
268
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?这道题用来判断链表中是否有循环,最开始我想的是遍历链表,同时用一个list保存遍历过...
分类:
其他好文 时间:
2014-11-21 01:18:32
阅读次数:
203
转:http://www.devdiv.com/home.php?mod=space&uid=50901&do=blog&id=50856在XCode的以前版本中,如果遇到了[代码]c#/cpp/oc代码:1message sent to deallocated instance 0x6d564f0...
分类:
数据库 时间:
2014-11-20 23:22:10
阅读次数:
321
Linked List CycleGiven a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?这道题要用双指针,但我想试一下投机取巧的办法行不行...
分类:
其他好文 时间:
2014-11-20 21:46:01
阅读次数:
185
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
Do not allocate extra space for another array, you must do this in place with...
分类:
其他好文 时间:
2014-11-20 17:07:03
阅读次数:
218
有时候系统程序比较多,会出 outofmemory, permgen space等内存等问题
首先监控是否有流没有关闭,常见的如 inputstream ,connection等,最好在finally中关闭
其次建议用jcondole监控一下程序,在命令行直接输入jcondole,就可以监听内存和线程的信息
如果程序中不好优化,就在tomcat bin下的catalina.sh(window...
分类:
系统相关 时间:
2014-11-20 15:24:32
阅读次数:
181
Given a linked list, determine if it has a cycle in it. (Without using eatra space)//Solution: define two pointers, one moves one step each time while...
分类:
其他好文 时间:
2014-11-20 13:31:10
阅读次数:
181
Given amxnmatrix, if an element is 0, set its entire row and column to 0. Do it in place.click to show follow up.Follow up:Did you use extra space?A s...
分类:
其他好文 时间:
2014-11-19 20:25:11
阅读次数:
248
Let $A$ and $B$ be two matrices (not necessarily of the same size). Relative to the lexicographically ordered basis on the space of tensors, the matri...
分类:
其他好文 时间:
2014-11-19 18:20:50
阅读次数:
142