`
chenzenghua
  • 浏览: 52903 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

jQuery HashTable

 
阅读更多
jQuery.hashTable = function () {
    this.items = new Array();
    this.itemsCount = 0;
    this.uniqueArray = new jQuery.uniqueArray();
    this.add = function (key, value) {
        if (!this.containsKey(key)) {
            this.items[key] = value;
            this.uniqueArray.add(key);
            this.itemsCount++;
        }
        else
            throw "key '" + key + "' allready exists."
    }

    this.set = function (key, value) {
        this.items[key] = value;
    }

    this.get = function (key) {
        if (this.containsKey(key))
            return this.items[key];
        else
            return null;
    }

    this.remove = function (key) {
        if (this.containsKey(key)) {
            delete this.items[key];
            this.uniqueArray.remove(key);
            this.itemsCount--;
        }
        else
            throw "key '" + key + "' does not exists."
    }
    this.containsKey = function (key) {
        return typeof (this.items[key]) != "undefined";
    }
    this.containsValue = function containsValue(value) {
        for (var item in this.items) {
            if (this.items[item] == value)
                return true;
        }
        return false;
    }
    this.contains = function (keyOrValue) {
        return this.containsKey(keyOrValue) || this.containsValue(keyOrValue);
    }
    this.clear = function () {
        this.items = new Array();
        this.uniqueArray = new jQuery.uniqueArray();
        itemsCount = 0;
    }
    this.size = function () {
        return this.itemsCount;
    }
    this.isEmpty = function () {
        return this.size() == 0;
    }
};



调用:
var hashTable = new jQuery.hashtable();
//...
分享到:
评论
2 楼 wenjundiandian 2012-12-17  
jQuery.uniqueArray  未定义。。。   
1 楼 wenjundiandian 2012-12-17  
        果断大牛。。。

相关推荐

Global site tag (gtag.js) - Google Analytics