摘要: function Entry(next, data) { this.next = next this.data = data } function Iterator(node) { this.cousor = node this.hasNext = function () { return (... 阅读全文
posted @ 2007-12-23 14:49 jacktu 阅读(1042) 评论(0) 推荐(0)
摘要: function Hashtable() { this._hash = new Object(); this.add = function(key,value){ if(typeof(key)!="undefined"){ if(this.contains... 阅读全文
posted @ 2007-12-23 14:49 jacktu 阅读(262) 评论(0) 推荐(0)