原创 快速排序Java源碼(遞歸和非遞歸)

http://blog.csdn.net/bnuside/article/details/6906688 ackage com.side.quicksort;    import com.side.tests.Stack;//作者自己

原创 HTML5和Flash——如何選擇合適的工具

HTML5和Flash——如何選擇合適的工具 2011-10-18 14:25 | 2281次閱讀 | 來源:eweek 【已有11條評論】發表評論 關鍵詞:HTML5,Flash | 作者:Darryl K. Taft | 收藏

原创 標點符號英語詞彙大全

.period 句號 ,comma 逗號 :colon 冒號 ;semicolon 分號 !exclamation 驚歎號 ?question mark 問號  ̄hyphen 連字符 'apostrophe 省略號;所有格符號 —da

原创 Hive vs. Pig

http://www.larsgeorge.com/2009/10/hive-vs-pig.html Hive vs. Pig While I was looking at Hive and Pig for processing

原创 常用數學英語詞彙

數學 mathematics, maths(BrE), math(AmE)   公理 axiom   定理 theorem   計算 calculation   運算 operation   證明 pro

原创 轉載]排序算法的穩定性

轉載]排序算法的穩定性 (2008-01-17 11:08:29) 轉載 標籤: 算法 穩定性 穩定性分析 it     首先,排序算法的穩定性,通俗地講就是能保證排序前2個相等的數其在序列的前後位置順序和排序後它們兩個的前後位置

原创 HashMap hash方法分析

http://www.iteye.com/topic/709945 ava代碼   int hash = hash(key.hashCode());  int i = indexFor(hash, table.length);   其中

原创 [置頂]C/C++中幾種經典的垃圾回收算法

http://blog.csdn.net/wallwind/article/details/6889917 1.引用計數算法          引用計數(Reference Counting)算法是每個對象計算指向它的指針的數量,當有

原创 哈希算法-----JAVA 源碼中實現的HashMap學習總結

http://blog.csdn.net/magic_coder/article/details/6342159 閱讀JAVA中HashMap的源碼時,以前數據結構學的都又回到腦海中,JAVA中的HashMap是"鏈表散列"的結構。有些