1. 程式人生 > >哈希映射

哈希映射

size 一個 rem ont hashmap bsp 遍歷 實現 遍歷字符串

  1. 哈希來源問題:關於統計一個字符串集合中,求出現次數最多的字符串思路:建立一個哈希映射HashMap),其鍵為"字符串",值為"字符串出現次數",然後遍歷字符串集合,如果字符串已存在,將鍵為該字符串的值加1,否則添加鍵值對"..
  2. 詳解javascript哈希映射的HashMap 參考腳本之家 http://www.jb51.net/article/84771.htm

    Hash Map 的簡單實現

//定義一個Hash Map

var hashMap={

Set : function(key,value){this[key] = value},

Get : function(key){return this[key]},

Contains : function(key){return this.Get(key) == null?false:true},

Remove : function(key){delete this[key]}

}

//設置hashMap鍵值

hashMap.Set("name","bonly");

hashMap.Set("age","24");

//獲取hashMap值

hashMap.Get("name");//bonly

hashMap.Contains("title");//false

hashMap.Contains("name");//true

hashMap.Remove("age");

哈希映射