hello-algo/codes/java/chapter_hashing/hash_map.java

52 lines
1.6 KiB
Java
Raw Permalink Normal View History

2022-12-04 18:37:16 +00:00
/*
* File: hash_map.java
* Created Time: 2022-12-04
* Author: Krahets (krahets@163.com)
*/
package chapter_hashing;
import java.util.*;
import include.*;
public class hash_map {
public static void main(String[] args) {
/* 初始化哈希表 */
Map<Integer, String> map = new HashMap<>();
/* 添加操作 */
// 在哈希表中添加键值对 (key, value)
2022-12-05 17:00:21 +00:00
map.put(12836, "小哈");
map.put(15937, "小啰");
map.put(16750, "小算");
map.put(13276, "小法");
map.put(10583, "小鸭");
2022-12-04 18:37:16 +00:00
System.out.println("\n添加完成后哈希表为\nKey -> Value");
PrintUtil.printHashMap(map);
/* 查询操作 */
// 向哈希表输入键 key ,得到值 value
2022-12-05 17:00:21 +00:00
String name = map.get(15937);
System.out.println("\n输入学号 15937 ,查询到姓名 " + name);
2022-12-04 18:37:16 +00:00
/* 删除操作 */
// 在哈希表中删除键值对 (key, value)
2022-12-05 17:00:21 +00:00
map.remove(10583);
System.out.println("\n删除 10583 后,哈希表为\nKey -> Value");
2022-12-04 18:37:16 +00:00
PrintUtil.printHashMap(map);
/* 遍历哈希表 */
System.out.println("\n遍历键值对 Key->Value");
for (Map.Entry <Integer, String> kv: map.entrySet()) {
System.out.println(kv.getKey() + " -> " + kv.getValue());
}
System.out.println("\n单独遍历键 Key");
for (int key: map.keySet()) {
System.out.println(key);
}
System.out.println("\n单独遍历值 Value");
for (String val: map.values()) {
System.out.println(val);
}
}
}