
Knowledge
文章平均质量分 62
violet_program
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
java传值与传址
补上原创 2013-07-10 05:56:50 · 602 阅读 · 0 评论 -
Java 不同版本更新总结
面试时候虽没有被问到,但是感觉在相关问题上丢了面试分,在此总结一下。 参考 Reference http://pwosboy.iteye.com/blog/118756 http://hanhg.iteye.com/blog/291956 http://pengcqu.iteye.com/blog/499749 Java 1.5 1. Generic 在之前版本,如果声明原创 2013-11-27 06:00:52 · 718 阅读 · 0 评论 -
知识点总结2 External Sorting, Bucket Sorting, and Radix Sorting
External Sorting Usage: Sort huge data with limited memory space. Main idea: Divide (in order to fit in the main memory), thenmerge together. One example from Wiki: Sort 900 MB data with 100 MB RA原创 2014-01-11 04:00:19 · 1081 阅读 · 0 评论 -
一些知识点总结(HeapSort, MergeSort, QuickSort, PrefixTree, TopologicalSort)
HeapSort package RandomPractice; public class HeapSort { public static int heapSize = 0; public static void buildHeap(int[] A){ heapSize = A.length; for(int i = A.length / 2 - 1; i >= 0; i--)原创 2014-01-01 02:37:18 · 1229 阅读 · 0 评论 -
Leetcode Blog Post Algorithms
package leetcode.blog; import java.util.ArrayList; import java.util.Arrays; public class LeetcodeBlog { // Q1 Find Intersection of two Sorted Arrays // if either A or B 's length is too big, try t原创 2014-01-18 04:52:19 · 880 阅读 · 0 评论 -
Java 知识点补充
thread and thread pool super() this() in constructor static block ListIterator Implementation of Map interface HashMap Hashtable TreeMap EnumMap Implementation of Set interface HashSet Tre原创 2014-03-15 03:41:11 · 617 阅读 · 0 评论