博文作者:迦壹博客地址:http://idoall.org/home.php?mod=space&uid=1&do=blog&id=542转载声明:可以转载, 但必须以超链接形式标明文章原始出处和作者信息及版权声明,谢谢合作!-------------------------------------...
分类:
其他好文 时间:
2014-08-05 18:59:30
阅读次数:
1037
博文作者:迦壹博客地址:http://idoall.org/home.php?mod=space&uid=1&do=blog&id=545转载声明:可以转载, 但必须以超链接形式标明文章原始出处和作者信息及版权声明,谢谢合作!-------------------------------------...
分类:
系统相关 时间:
2014-08-05 18:58:49
阅读次数:
445
堆栈1,概要堆栈是两种数据结构。堆栈都是一种数据项按序排列的的数据结构,只能在一端进行(称为栈顶(top))对数据项进行插入和删除。要点:堆,列队优先,先进先出。栈,后进先出(Last-In/First-Out)。2,对比(Java语言)1.栈(stack)和堆(heap)都是java用来在Ram中...
分类:
编程语言 时间:
2014-08-05 18:24:29
阅读次数:
358
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 i...
分类:
其他好文 时间:
2014-08-05 18:09:19
阅读次数:
168
Note: For additional ORA-600 related information please read Note:146580.1PURPOSE: This article discusses the internal error "ORA-600 [729]", what ...
分类:
其他好文 时间:
2014-08-05 15:40:39
阅读次数:
237
text-overflow:ellipsis;white-space:nowrap;overflow:hidden;不换行,一行显示溢出时,文本自动换行。以前都是js计算的,现在可好。ellipsis:省略号
分类:
Web程序 时间:
2014-08-05 09:30:58
阅读次数:
360
题目:Two elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A solution using O(n) space....
分类:
编程语言 时间:
2014-08-05 05:17:28
阅读次数:
265
Word BreakGiven a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dictionary words....
分类:
其他好文 时间:
2014-08-05 03:04:18
阅读次数:
239
参考文献:
Harley Hahns:Guide to Unix and Linux, Chap 24
——》首先要有的关键概念:the amount of "disk space" used by a file is not the same as the amount of data in the file.
——》其次,理解在file system和disk(or ot...
分类:
其他好文 时间:
2014-08-04 21:37:08
阅读次数:
223
1.java是如何管理内存的java的内存管理就是对象的分配和释放问题。(其中包括两部分) 分配:内存的分配是由程序完成的,程序员需要通过关键字new为每个对象申请内存空间(基本类型除外),所有的对象都在堆(Heap)中分配空间。释放:对象的释放是由垃圾回收机制决定和执行的,这样做确实简化了程序员的...
分类:
编程语言 时间:
2014-08-04 20:56:28
阅读次数:
413