交互设计算法基础 - Hash Table

Posted 松鼠之家

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了交互设计算法基础 - Hash Table相关的知识,希望对你有一定的参考价值。

 1   
 2 import java.util.Map;
 3 
 4 // Note the HashMap‘s "key" is a String and "value" is an Integer
 5 HashMap<String,Integer> hm = new HashMap<String,Integer>();
 6 
 7 // Putting key-value pairs in the HashMap
 8 hm.put("Ava", 1);
 9 hm.put("Cait", 35);
10 hm.put("Casey", 36);
11 
12 // Using an enhanced loop to interate over each entry
13 for (Map.Entry me : hm.entrySet()) {
14   print(me.getKey() + " is ");
15   println(me.getValue());
16 }
17 
18 // We can also access values by their key
19 int val = hm.get("Casey");
20 println("Casey is " + val);

Processing内建HASH Table(哈希表),倒是挺方便的,就不用自己动手写啦!!☆⌒(*^-゜)v

以上是关于交互设计算法基础 - Hash Table的主要内容,如果未能解决你的问题,请参考以下文章

架构基础4-分布式缓存设计:一致性Hash算法

(算法)哈希表

2017-2018-1 20155317《信息安全系统设计基础》 实验五 通讯协议设计

交互设计算法基础 - Quick Sort

一致性哈希算法PHP测试片段

数据结构与算法哈希表 (hash table)