【DateStructure】 Charnming usages of Map collection in Java

When learning the usage of map collection in java, I found serveral beneficial methods that was encountered in the daily life. Now  I made a summary:

[java] view
plain
copy

  1. import java.util.ArrayList;
  2. import java.util.Collections;
  3. import java.util.Comparator;
  4. import java.util.HashMap;
  5. import java.util.Iterator;
  6. import java.util.List;
  7. import java.util.Map;
  8. import java.util.SortedMap;
  9. import java.util.TreeMap;
  10. public class MapUtil
  11. {
  12. private static final Map<String, String> contents = new HashMap<String, String>();
  13. @SuppressWarnings("unchecked")
  14. public static void initMap()
  15. {
  16. Map testMap = new HashMap<String, String>();
  17. testMap.put("Albert", "Shao");
  18. contents.putAll(testMap);
  19. }
  20. /**
  21. * Four methods to list map.
  22. * output:
  23. * Albert:Shao
  24. Albert:Shao
  25. Shao
  26. Albert:Shao
  27. * @time Jul 18, 2014 11:39:46 AM
  28. * @return void
  29. */
  30. public static void listMap()
  31. {
  32. Map<String, String> testMap = new HashMap<String, String>();
  33. testMap.put("Albert", "Shao");
  34. for (Map.Entry<String, String> entry : testMap.entrySet())
  35. {
  36. System.out.println(entry.getKey() + ":" + entry.getValue());
  37. }
  38. for (String key : testMap.keySet())
  39. {
  40. System.out.println(key + ":" + testMap.get(key));
  41. }
  42. for (String value : testMap.values())
  43. {
  44. System.out.println(value);
  45. }
  46. Iterator<Map.Entry<String, String>> keyIt = testMap.entrySet()
  47. .iterator();
  48. while (keyIt.hasNext())
  49. {
  50. Map.Entry<String, String> entry = keyIt.next();
  51. System.out.println(entry.getKey() + ":" + entry.getValue());
  52. }
  53. }
  54. /**
  55. * Use the treeMap order by key asc.
  56. * Watch out: if key is repeated, the latter element will replace the former.
  57. * output: {Apple=five, Banana=three, Grape=one, Pair=four}
  58. *
  59. * @time Jul 18, 2014 11:37:51 AM
  60. * @return void
  61. */
  62. public static void sort()
  63. {
  64. SortedMap<String, String> sortMap = new TreeMap<String, String>();
  65. sortMap.put("Pair", "four");
  66. sortMap.put("Apple", "two");
  67. sortMap.put("Grape", "one");
  68. sortMap.put("Banana", "three");
  69. sortMap.put("Apple", "five");
  70. System.out.println(sortMap);
  71. }
  72. /**
  73. * Sort the Map by map.value, then set the result to map.
  74. * output : [Apple=1, Pair=2, Banana=3, Grape=4]
  75. *
  76. * @time Jul 18, 2014 11:36:28 AM
  77. * @return void
  78. */
  79. public static void sortByValue()
  80. {
  81. Map<String, Integer> testMap = new HashMap<String, Integer>();
  82. testMap.put("Pair", 2);
  83. testMap.put("Apple", 1);
  84. testMap.put("Grape", 4);
  85. testMap.put("Banana", 3);
  86. List<Map.Entry<String, Integer>> entryList = new ArrayList<Map.Entry<String, Integer>>(
  87. testMap.entrySet());
  88. Collections.sort(entryList,
  89. new Comparator<Map.Entry<String, Integer>>()
  90. {
  91. public int compare(Map.Entry<String, Integer> c1,
  92. Map.Entry<String, Integer> c2)
  93. {
  94. return (c1.getValue() - c2.getValue());
  95. }
  96. });
  97. System.out.println(entryList);
  98. }
  99. /**
  100. *Sort map by value when value is object.
  101. * use compareTo method to replace simple ‘-‘
  102. * output:[Apple=AB, Grape=AF, Pair=BB, Banana=XY]
  103. *
  104. * @time Jul 18, 2014 11:48:35 AM
  105. * @return void
  106. */
  107. public static void sortByObject()
  108. {
  109. Map<String, String> testMap = new HashMap<String, String>();
  110. testMap.put("Pair", "BB");
  111. testMap.put("Apple", "AB");
  112. testMap.put("Grape", "AF");
  113. testMap.put("Banana", "XY");
  114. List<Map.Entry<String, String>> entryList = new ArrayList<Map.Entry<String, String>>(
  115. testMap.entrySet());
  116. Collections.sort(entryList,
  117. new Comparator<Map.Entry<String, String>>()
  118. {
  119. public int compare(Map.Entry<String, String> c1,
  120. Map.Entry<String, String> c2)
  121. {
  122. return (c1.getValue().compareTo(c2.getValue()));
  123. }
  124. });
  125. System.out.println(entryList);
  126. }
  127. public static void main(String[] args)
  128. {
  129. MapUtil.listMap();
  130. MapUtil.sort();
  131. MapUtil.sortByValue();
  132. MapUtil.sortByObject();
  133. }
  134. }

If you want to further know about the usage of list methods, you could view my another blogs.

http://blog.csdn.net/sxb0841901116/article/details/20635267

【DateStructure】 Charnming usages of Map collection in Java,布布扣,bubuko.com

时间: 2024-10-27 08:00:19

【DateStructure】 Charnming usages of Map collection in Java的相关文章

【原创】【Android】揭秘 ART 细节 ---- Garbage collection

背景 Dalvik :http://zh.wikipedia.org/wiki/Dalvik%E8%99%9A%E6%8B%9F%E6%9C%BA ART :http://source.android.com/devices/tech/dalvik/art.html 正文 Ian Rogers  在Google IO 2014上讲述了 The ART runtime 的Garbage Collection部分,通过他的讲述,我们可以了解到ART在垃圾回收方面有哪些改进的地方.开门见山,下面我们就

【UVA】230 - Borrowers(map模拟)

利用map<string,int>判断一本书的状态,0代表借出去了,1代表在书架,2代表借出去换回来但是还未放回书架 设计一些字符串的处理问题,用一些字符串搜索函数比如 strstr , strchar等等 14072706 230 Borrowers Accepted C++ 0.015 2014-08-21 02:59:27 AC代码: #include<cstdio> #include<cstring> #include<iostream> #incl

【DataStructure】Charming usage of Set in the java

In an attempt to remove duplicate elements from list, I go to the lengths to take advantage of  methods in the java api. After investiagting the document of java api, the result is so satisfying that I speak hightly of wisdom of developer of java lan

【Go语言】【10】GO语言的map

GO语言中的复合类型除了数组.切片之外,还有一个map:说起map估计大家都不陌生,因为在Java.C++等语言中有它的身影,它以<key,value>的形式为程序员提供服务. 从图中也可以看出:内存中存储了六个城市信息,其中key是城市电话区号,value是城市名称.对于城市电话区号(key)是唯一的,这样方便程序员对城市名称(value)进行增.删.改.查等操作:另外<key,value>之间也存在一定的关联,即图中的箭头,但这种关联关系对GO语言的初学者来说并不需要特别关心.

【BZOJ1125】[POI2008]Poc hash+map+SBT

[BZOJ1125][POI2008]Poc Description n列火车,每条有l节车厢.每节车厢有一种颜色(用小写字母表示).有m次车厢交换操作.求:对于每列火车,在交换车厢的某个时刻,与其颜色完全相同的火车最多有多少. Input n l m (2 ≤ n ≤ 1000, 1 ≤ l ≤ 100, 0 ≤ m ≤ 100000) n行字符串,长度为l m行,每行4个数a b c d,a车的第b个字符与c车第d个字符交换. Output n个数,在交换车厢的某个时刻,与该车颜色完全相同的

【LeetCode】String to Integer (atoi) 解题报告 (Java)

这道题在LeetCode OJ上难道属于Easy,但是通过率却比较低,究其原因是需要考虑的情况比较低,很少有人一遍过吧. [题目] Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the poss

【算法】哈希表的诞生(Java)

参考资料 <算法(java)>                           — — Robert Sedgewick, Kevin Wayne <数据结构>                                  — — 严蔚敏 为什么要使用哈希表 查找和插入是查找表的两项基本操作,对于单纯使用链表,数组,或二叉树实现的查找表来说,这两项操作在时间消耗上仍显得比较昂贵. 以查找为例:在数组实现的查找表中,需要用二分等查找方式进行一系列的比较后,才能找到给定的键值对

【dom4j】解析xml为map

dom4j解析xml文件 <?xml version="1.0" encoding="utf-8"?> <workflows> <queryRequest> <branchId>88037062</branchId> <merSysId>00000317</merSysId> <queryNo>948983692</queryNo> <billType&

【iOS】苹果,百度Map定位使用与总结

OS中使用较多的3款地图,google地图.百度地图.苹果自带地图(高德).其中苹果自带地图在中国使用的是高德的数据.苹果在iOS 6之后放弃了使用谷歌地图,而改用自家的地图.在国内使用的较多的就是百度.苹果自带地图(高德),以下总结下这两个. 一.苹果地图的使用 因为苹果使用的是高德的地图,加上苹果做的一些封装,使用起来也非常方便.不需要引入第三方框架,相比较之下,使用百度地图SDK会使源码与程序都 大10M多,这点很蛋疼.同时由于苹果使用的是高德,不会像谷歌地图一样在国内乌龟一样的访问速度,