hello-algo/codes/csharp/chapter_hashing/array_hash_map.cs

163 lines
3.7 KiB
Java
Raw Normal View History

/**
* File: array_hash_map.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
2022-12-23 15:42:02 +08:00
using NUnit.Framework;
namespace hello_algo.chapter_hashing;
2022-12-23 15:42:02 +08:00
/* 键值对 int->String */
class Entry
{
public int key;
public String val;
public Entry(int key, String val)
2022-12-23 15:42:02 +08:00
{
this.key = key;
this.val = val;
2022-12-23 15:42:02 +08:00
}
}
2022-12-23 15:42:02 +08:00
/* 基于数组简易实现的哈希表 */
class ArrayHashMap
{
2023-03-15 03:11:43 +08:00
private List<Entry?> buckets;
public ArrayHashMap()
2022-12-23 15:42:02 +08:00
{
// 初始化一个长度为 100 的桶(数组)
2023-03-15 03:11:43 +08:00
buckets = new();
for (int i = 0; i < 100; i++)
2022-12-23 15:42:02 +08:00
{
2023-03-15 03:11:43 +08:00
buckets.Add(null);
2022-12-23 15:42:02 +08:00
}
}
2022-12-23 15:42:02 +08:00
/* 哈希函数 */
private int hashFunc(int key)
{
int index = key % 100;
return index;
}
2022-12-23 15:42:02 +08:00
/* 查询操作 */
public String? get(int key)
{
int index = hashFunc(key);
2023-03-15 03:11:43 +08:00
Entry? pair = buckets[index];
if (pair == null) return null;
return pair.val;
}
2022-12-23 15:42:02 +08:00
/* 添加操作 */
public void put(int key, String val)
{
Entry pair = new Entry(key, val);
int index = hashFunc(key);
2023-03-15 03:11:43 +08:00
buckets[index] = pair;
}
2022-12-23 15:42:02 +08:00
/* 删除操作 */
public void remove(int key)
{
int index = hashFunc(key);
// 置为 null ,代表删除
2023-03-15 03:11:43 +08:00
buckets[index] = null;
}
2022-12-23 15:42:02 +08:00
/* 获取所有键值对 */
public List<Entry> entrySet()
{
List<Entry> entrySet = new();
2023-03-15 03:11:43 +08:00
foreach (Entry? pair in buckets)
2022-12-23 15:42:02 +08:00
{
if (pair != null)
entrySet.Add(pair);
2022-12-23 15:42:02 +08:00
}
return entrySet;
}
2022-12-23 15:42:02 +08:00
/* 获取所有键 */
public List<int> keySet()
{
List<int> keySet = new();
2023-03-15 03:11:43 +08:00
foreach (Entry? pair in buckets)
2022-12-23 15:42:02 +08:00
{
if (pair != null)
keySet.Add(pair.key);
2022-12-23 15:42:02 +08:00
}
return keySet;
}
2022-12-23 15:42:02 +08:00
/* 获取所有值 */
public List<String> valueSet()
{
List<String> valueSet = new();
2023-03-15 03:11:43 +08:00
foreach (Entry? pair in buckets)
2022-12-23 15:42:02 +08:00
{
if (pair != null)
valueSet.Add(pair.val);
2022-12-23 15:42:02 +08:00
}
return valueSet;
}
2022-12-23 15:42:02 +08:00
/* 打印哈希表 */
public void print()
{
foreach (Entry kv in entrySet())
2022-12-23 15:42:02 +08:00
{
Console.WriteLine(kv.key + " -> " + kv.val);
2022-12-23 15:42:02 +08:00
}
}
}
2022-12-23 15:42:02 +08:00
public class array_hash_map
{
[Test]
public void Test()
2022-12-23 15:42:02 +08:00
{
/* 初始化哈希表 */
ArrayHashMap map = new ArrayHashMap();
/* 添加操作 */
// 在哈希表中添加键值对 (key, value)
map.put(12836, "小哈");
map.put(15937, "小啰");
map.put(16750, "小算");
map.put(13276, "小法");
map.put(10583, "小鸭");
Console.WriteLine("\n添加完成后哈希表为\nKey -> Value");
map.print();
/* 查询操作 */
// 向哈希表输入键 key ,得到值 value
String? name = map.get(15937);
Console.WriteLine("\n输入学号 15937 ,查询到姓名 " + name);
/* 删除操作 */
// 在哈希表中删除键值对 (key, value)
map.remove(10583);
Console.WriteLine("\n删除 10583 后,哈希表为\nKey -> Value");
map.print();
/* 遍历哈希表 */
Console.WriteLine("\n遍历键值对 Key->Value");
foreach (Entry kv in map.entrySet())
{
Console.WriteLine(kv.key + " -> " + kv.val);
}
Console.WriteLine("\n单独遍历键 Key");
foreach (int key in map.keySet())
{
Console.WriteLine(key);
}
Console.WriteLine("\n单独遍历值 Value");
foreach (String val in map.valueSet())
2022-12-23 15:42:02 +08:00
{
Console.WriteLine(val);
2022-12-23 15:42:02 +08:00
}
}
}