function Hashtable()//自定义hashtable
{
this._hash = new Object();
this.add = function(key, value) {
if (typeof (key) != "undefined") {
if (this.contains(key) == false) {
this._hash[key] = typeof (value) == "undefined" ? null : value;
return true;
} else {
return false;
}
} else {
return false;
}
}
this.remove = function(key) { delete this._hash[key]; }
this.count = function() { var i = 0; for (var k in this._hash) { i++; } return i; }
this.items = function(key) { return this._hash[key]; }
this.contains = function(key) { return typeof (this._hash[key]) != "undefined"; }
this.clear = function() { for (var k in this._hash) { delete this._hash[k]; } }
}
转载于:https://www.cnblogs.com/ice5/archive/2010/07/06/1772343.html
本文介绍了一种自定义的Hashtable实现方式,包括添加、删除、计数等核心功能,并提供了完整的JavaScript代码示例。

1952

被折叠的 条评论
为什么被折叠?



