码迷,mamicode.com
首页 > 编程语言 > 详细

交互设计算法基础(4) - Hash Table

时间:2017-09-16 13:46:18      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:map   als   cas   str   hash   over   string   style   算法   

 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

交互设计算法基础(4) - Hash Table

标签:map   als   cas   str   hash   over   string   style   算法   

原文地址:http://www.cnblogs.com/x5115x/p/7530814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!