js中字典的使用

时间:2024-10-01 20:16:09
  • <script>
  • function add(key, value){ // 添加字典的键值(key:value)
  • this.dataStorege[key] = value;
  • }
  • function display(){ //显示字典中的键值(key:value)
  • for(var key in this.dataStorege){
  • console.log(key + " : " + this.dataStorege[key]);
  • }
  • }
  • function find(key){ // 根据键(key)查找对应的值(value),返回值value
  • return this.dataStorege[key];
  • }
  • function remove(key){ // 根据键(key)删除对应的值(value)
  • delete this.dataStorege[key];
  • }
  • function count(){ // 计算字典中的元素个数
  • var n = 0;
  • for(var key in Object.keys(this.dataStorege)){
  • ++n;
  • }
  • return n;
  • }
  • function kSort(){ // 字典按值(value)排序,并输出排序后的结果
  • var dic = this.dataStorege;
  • var res = Object.keys(dic).sort();
  • for(var key in res ){
  • console.log(res[key] + " : " + dic[res[key]]);
  • }
  • }
  • function vSort(){ // 字典按值(value)排序,并输出排序后的结果
  • var dic = this.dataStorege;
  • var res = Object.keys(dic).sort(function(a,b){
  • return dic[a]-dic[b];
  • });
  • for(var key in res ){
  • console.log(res[key] + " : " + dic[res[key]]);
  • }
  • }
  • function clear(){ // 清空字典内容
  • for(var key in this.dataStorege){
  • delete this.dataStorege[key];
  • }
  • }
  • function Dictionary(){
  • this.dataStorege = new Array(); // 定义一个数组,保存字典元素
  • this.add = add; // 添加字典内容(key:value)
  • this.show = show; // 显示字典中的键值
  • this.find = find; // 根据键(key)查找并返回对应的值(value)
  • this.remove = remove; // 删掉相对应的键值
  • this.count = count; // 计算字典中的元素的个数
  • this.kSort = kSort; // 按键(key)排序
  • this.vSort = vSort; // 按值(value)排序
  • this.clear = clear; // 清空字典内容
  • }
  • var dic = new Dictionary(); // 构造字典类
  • dic.add('one',1);
  • dic.display()
  • </script>
  • 相关文章