mirror of
https://github.com/krahets/hello-algo.git
synced 2026-04-24 02:21:30 +08:00
* Review the EN heading format. * Fix pythontutor headings. * Fix pythontutor headings. * bug fixes * Fix headings in **/summary.md * Revisit the CN-to-EN translation for Python code using Claude-4.5 * Revisit the CN-to-EN translation for Java code using Claude-4.5 * Revisit the CN-to-EN translation for Cpp code using Claude-4.5. * Fix the dictionary. * Fix cpp code translation for the multipart strings. * Translate Go code to English. * Update workflows to test EN code. * Add EN translation for C. * Add EN translation for CSharp. * Add EN translation for Swift. * Trigger the CI check. * Revert. * Update en/hash_map.md * Add the EN version of Dart code. * Add the EN version of Kotlin code. * Add missing code files. * Add the EN version of JavaScript code. * Add the EN version of TypeScript code. * Fix the workflows. * Add the EN version of Ruby code. * Add the EN version of Rust code. * Update the CI check for the English version code. * Update Python CI check. * Fix cmakelists for en/C code. * Fix Ruby comments
145 lines
3.9 KiB
Kotlin
145 lines
3.9 KiB
Kotlin
/**
|
|
* File: hash_map_chaining.kt
|
|
* Created Time: 2024-01-25
|
|
* Author: curtishd (1023632660@qq.com)
|
|
*/
|
|
|
|
package chapter_hashing
|
|
|
|
/* Hash table with separate chaining */
|
|
class HashMapChaining {
|
|
var size: Int // Number of key-value pairs
|
|
var capacity: Int // Hash table capacity
|
|
val loadThres: Double // Load factor threshold for triggering expansion
|
|
val extendRatio: Int // Expansion multiplier
|
|
var buckets: MutableList<MutableList<Pair>> // Bucket array
|
|
|
|
/* Constructor */
|
|
init {
|
|
size = 0
|
|
capacity = 4
|
|
loadThres = 2.0 / 3.0
|
|
extendRatio = 2
|
|
buckets = mutableListOf()
|
|
for (i in 0..<capacity) {
|
|
buckets.add(mutableListOf())
|
|
}
|
|
}
|
|
|
|
/* Hash function */
|
|
fun hashFunc(key: Int): Int {
|
|
return key % capacity
|
|
}
|
|
|
|
/* Load factor */
|
|
fun loadFactor(): Double {
|
|
return (size / capacity).toDouble()
|
|
}
|
|
|
|
/* Query operation */
|
|
fun get(key: Int): String? {
|
|
val index = hashFunc(key)
|
|
val bucket = buckets[index]
|
|
// Traverse bucket, if key is found, return corresponding val
|
|
for (pair in bucket) {
|
|
if (pair.key == key) return pair._val
|
|
}
|
|
// If key is not found, return null
|
|
return null
|
|
}
|
|
|
|
/* Add operation */
|
|
fun put(key: Int, _val: String) {
|
|
// When load factor exceeds threshold, perform expansion
|
|
if (loadFactor() > loadThres) {
|
|
extend()
|
|
}
|
|
val index = hashFunc(key)
|
|
val bucket = buckets[index]
|
|
// Traverse bucket, if specified key is encountered, update corresponding val and return
|
|
for (pair in bucket) {
|
|
if (pair.key == key) {
|
|
pair._val = _val
|
|
return
|
|
}
|
|
}
|
|
// If key does not exist, append key-value pair to the end
|
|
val pair = Pair(key, _val)
|
|
bucket.add(pair)
|
|
size++
|
|
}
|
|
|
|
/* Remove operation */
|
|
fun remove(key: Int) {
|
|
val index = hashFunc(key)
|
|
val bucket = buckets[index]
|
|
// Traverse bucket and remove key-value pair from it
|
|
for (pair in bucket) {
|
|
if (pair.key == key) {
|
|
bucket.remove(pair)
|
|
size--
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Expand hash table */
|
|
fun extend() {
|
|
// Temporarily store the original hash table
|
|
val bucketsTmp = buckets
|
|
// Initialize expanded new hash table
|
|
capacity *= extendRatio
|
|
// mutablelist has no fixed size
|
|
buckets = mutableListOf()
|
|
for (i in 0..<capacity) {
|
|
buckets.add(mutableListOf())
|
|
}
|
|
size = 0
|
|
// Move key-value pairs from original hash table to new hash table
|
|
for (bucket in bucketsTmp) {
|
|
for (pair in bucket) {
|
|
put(pair.key, pair._val)
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Print hash table */
|
|
fun print() {
|
|
for (bucket in buckets) {
|
|
val res = mutableListOf<String>()
|
|
for (pair in bucket) {
|
|
val k = pair.key
|
|
val v = pair._val
|
|
res.add("$k -> $v")
|
|
}
|
|
println(res)
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Driver Code */
|
|
fun main() {
|
|
/* Initialize hash table */
|
|
val map = HashMapChaining()
|
|
|
|
/* Add operation */
|
|
// Add key-value pair (key, value) to the hash table
|
|
map.put(12836, "Xiao Ha")
|
|
map.put(15937, "Xiao Luo")
|
|
map.put(16750, "Xiao Suan")
|
|
map.put(13276, "Xiao Fa")
|
|
map.put(10583, "Xiao Ya")
|
|
println("\nAfter adding is complete, hash table is\nKey -> Value")
|
|
map.print()
|
|
|
|
/* Query operation */
|
|
// Input key into hash table to get value
|
|
val name = map.get(13276)
|
|
println("\nInput student ID 13276, found name $name")
|
|
|
|
/* Remove operation */
|
|
// Remove key-value pair (key, value) from hash table
|
|
map.remove(12836)
|
|
println("\nAfter removing 12836, hash table is\nKey -> Value")
|
|
map.print()
|
|
} |