摘要: // js哈希表 function HashTable() { this.ObjArr = {}; this.Count = 0; //添加 this.Add = function(key, value) { if (this.ObjArr.hasOwnProperty(key)) { return false; //如果键已经... 阅读全文
posted @ 2012-12-26 09:14 yixiong 阅读(139) 评论(0) 推荐(0) 编辑