對自已的路雖不很明確,但不能僅止於現狀!
該做與不該做的,最少有一個指針在控管!
清楚明白自已的弱點所在,
就算只是一步、兩步還是慢慢前進。
「人生的課題,如果你沒有學會處理,
它就會一而再、再而三的讓你練習」
在進行歸納推理時,如果逐個考察了某類事件的所有可能情況,
因而得出一般結論,那麼這結論是可靠的,這種歸納方法叫做枚舉法
學習決定你的才識,讀書決定你的思想,社團決定你的人脈,創業決定你的膽略,生活決定你的品位
標籤
- 處事手法 (3)
- 實用 (62)
- 漫畫 (15)
- 廢言 (3)
- Design Pattern (2)
- English (6)
- GAME (32)
- java (12)
- programming (95)
2013年4月18日 星期四
Cuckoo Hashing交獻分析
Rasmus Pagh 1
IT University of Copenhagen, Rued Langgaardsvej 7, 2300 Kobenhavn S, Denmark
Flemming Friche Rodler 2
ON-AIR A/S, Digtervejen 9, 9200 Aalborg SV, Denmark.
===========================================================
1. 作者所做實驗的內容:
We present a simple dictionary with worst case constant lookup time, equaling the
theoretical performance of the classic dynamic perfect hashing scheme of Dietzfelbinger
et al. (Dynamic perfect hashing: Upper and lower bounds. SIAM J. Comput.,
23(4):738–761, 1994). The space usage is similar to that of binary search trees.
Besides being conceptually much simpler than previous dynamic dictionaries with
worst case constant lookup time, our data structure is interesting in that it does
not use perfect hashing, but rather a variant of open addressing where keys can be
moved back in their probe sequences. An implementation inspired by our algorithm,
but using weaker hash functions, is found to be quite practical. It is competitive
with the best known dictionaries having an average case (but no nontrivial worst
case) guarantee on lookup time.
2. 實驗方案及所用到的方法、手段
3. 實驗結論與分析
4. 實驗中存在的不足 (按: 找到人家實驗中存在的問題與不足,也就找到了自己努力的方向)
5. 作者的實驗思想 (按: 當你透過字裡行間把握了作者的實驗主導思想,就可以對實驗方案進行高屋建瓴地分析與取捨了)
===========================================================
The Dynamic Dictionary problem is considered: provide an algorithm for storing a dynamic set, allowing the operation insert, delete and look up. A Dynamic Perfect Hashing Strategy is given: a randomized algorithm for the dynamic perfect dictionary problem that takes O(1) worst case , time for lookups, and O(1) amortized expected time for insertions and deletions; it uses
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言