level 1
云果云
楼主
">
New Document
<!-- function HashTable() { this.Items=[]; this.Count=function(){return this.Items.length;}; //长度 this.DictionaryEntry=function(key,value) { this.Key=key||null; this.Value=value||null; } this.Add=function(key,value){this.Items.push(new this.DictionaryEntry(key,value));} this.Clear=function(){this.Items.length=0;} this.Remove=function(key) { var index=this.GetIndexWithKey(key); if(index>-1) this.Items.splice(index,1); } this.GetValue=function(key) { var index=this.GetIndexWithKey(key); if(index>-1) return this.Items[index].Value; } 见教程:http://www.d8sun.com/bbs/thread-4108-1-1.html
2008年05月01日 10点05分
1
New Document
<!-- function HashTable() { this.Items=[]; this.Count=function(){return this.Items.length;}; //长度 this.DictionaryEntry=function(key,value) { this.Key=key||null; this.Value=value||null; } this.Add=function(key,value){this.Items.push(new this.DictionaryEntry(key,value));} this.Clear=function(){this.Items.length=0;} this.Remove=function(key) { var index=this.GetIndexWithKey(key); if(index>-1) this.Items.splice(index,1); } this.GetValue=function(key) { var index=this.GetIndexWithKey(key); if(index>-1) return this.Items[index].Value; } 见教程:http://www.d8sun.com/bbs/thread-4108-1-1.html