数据结构与算法JavaScript描述——字典 7.4 练习

字典 字典:是一种以键值对的形式存储数据的数据结构javascript // 字典:是一种以键值对的形式存储数据的数据结构 { function Dictionary(){ this.database = new Array(); this.find = function(key){ return this.database[key]; }; this.add = fun
相关文章
相关标签/搜索