zoukankan      html  css  js  c++  java
  • js 实现存储Map 结构的数据

    <script type="text/javascript">
    function Map() {
    var struct = function(key, value) {
    this.key = key;
    this.value = value;
    }

    var put = function(key, value){
    for (var i = 0; i < this.arr.length; i++) {
    if ( this.arr[i].key === key ) {
    this.arr[i].value = value;
    return;
    }
    }
    this.arr[this.arr.length] = new struct(key, value);
    }

    var get = function(key) {
    for (var i = 0; i < this.arr.length; i++) {
    if ( this.arr[i].key === key ) {
    return this.arr[i].value;
    }
    }
    return null;
    }

    var remove = function(key) {
    var v;
    for (var i = 0; i < this.arr.length; i++) {
    v = this.arr.pop();
    if ( v.key === key ) {
    continue;
    }
    this.arr.unshift(v);
    }
    }

    var size = function() {
    return this.arr.length;
    }

    var isEmpty = function() {
    return this.arr.length <= 0;
    }
    this.arr = new Array();
    this.get = get;
    this.put = put;
    this.remove = remove;
    this.size = size;
    this.isEmpty = isEmpty;
    }
    </script>

    ====================================

    <script type="text/javascript">
    var map=new Map();
    map.put('h','hello');
    map.put('hw','world');
    console.log(map);
    </script>

    ====================================

  • 相关阅读:
    Ajax 一
    Ajax
    回调函数2
    回调函数
    mysql_fetch_row mysql_fetch_array
    几款主流PHP框架的优缺点评比
    关于PHP 7你必须知道的五件事
    10个实用的PHP正则表达式
    PHP实现四种基本排序算法
    10个最佳的PHP图像操作库
  • 原文地址:https://www.cnblogs.com/austinspark-jessylu/p/6294187.html
Copyright © 2011-2022 走看看