摘要: 1 <script> 2 function HashMap(){this.map = {};} 3 HashMap.prototype = { 4 put : function(key, value){ this.map[key] = value;}, 5 get : function(key){ 阅读全文
posted @ 2019-03-13 15:05 大飞90 阅读(2312) 评论(0) 推荐(0) 编辑