
Basic Knowledge
iteye_10659
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Difference between Threads and Processes
What is the difference between Threads and Processes? A process is a collection of virtual memory space, code, data, and system resources. A thread is code that is to be serially executed within a ...原创 2011-03-29 21:56:27 · 188 阅读 · 0 评论 -
BST compared to Linked List
1. in the worst case, BST degenerates to a linked list2. O(logn) insert/delete time3. conding complexity原创 2011-04-01 07:22:58 · 144 阅读 · 0 评论 -
Comparision between BST, Array, LinkedList, Hashtable
BST: BST has the advantages of both array and linked list: it can do binary search and also it is of dynamic size. BST allows fast enumeration of the items in key order. Lookup algorithms get m...原创 2011-04-12 09:11:57 · 146 阅读 · 0 评论 -
java
Difference between Abstract Classes and InterfaceWhat is an Abstract Class?It only allows other classes to inherit from it but cannot be instantiated. The advantage is that it enforces certain hierarc...原创 2011-04-12 13:17:38 · 145 阅读 · 0 评论