博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2011年4月26日

摘要: <script type="text/javascript"> function HashTable() { this._hashtable = {}; if (typeof (_hashtable_initialized) == "undefined") { HashTable.prototype.Add = function(key, value) { if (key in this._hashtable) { return false; } this._hashtable[key] = value; return true; } Has 阅读全文

posted @ 2011-04-26 21:24 Adam哥 阅读(411) 评论(0) 推荐(0) 编辑

counter