Hash Tables
Group by Key
Build buckets keyed by a shared field, preserving the first-seen key order.
Algorithm
Canonical pairs (a,1), (b,2), (a,3), (c,4), (b,5) print
{a: [1, 3], b: [2, 5], c: [4]}.
The replay uses the same input in every language, so this Kotlin DSA
implementation can be compared directly with the rest of the DSA track.
bucket map
Each key owns a list. A new key creates a bucket; a repeated key appends to the existing bucket.
Basic Implementation
basic.kt
Replay: real traced execution (multi-file project)
fun main() {
val pairs = listOf("a" to 1, "b" to 2, "a" to 3, "c" to 4, "b" to 5)
val groups = linkedMapOf<String, MutableList<Int>>()
for ((key, value) in pairs) {
groups.getOrPut(key) { mutableListOf() }.add(value)
}
val parts = groups.map { (key, values) -> "$key: [${values.joinToString(", ")}]" }
println("{${parts.joinToString(", ")}}")
}
pairs ← [(a, 1), (b, 2), (a, 3), (c, 4), (b, 5)]
1fun main() {2 val pairs = listOf("a" to 1, "b" to 2, "a" to 3, "c" to 4, "b" to 5)values this step[(a, 1), (b, 2), (a, 3), (c, 4), (b, 5)]pairsgroups ← {}
2val pairs = listOf("a" to 1, "b" to 2, "a" to 3, "c" to 4, "b" to 5)3val groups = linkedMapOf<String, MutableList<Int>>()4for ((key, value) in pairs) {values this step{}groupsgroups ← {a: [1]}
2val pairs = listOf("a" to 1, "b" to 2, "a" to 3, "c" to 4, "b" to 5)3val groups = linkedMapOf<String, MutableList<Int>>()4for ((key, value) in pairs) {values this step{} → {a: [1]}groupsakey1valuegroups ← {a: [1], b: [2]}
2val pairs = listOf("a" to 1, "b" to 2, "a" to 3, "c" to 4, "b" to 5)3val groups = linkedMapOf<String, MutableList<Int>>()4for ((key, value) in pairs) {values this step{a: [1]} → {a: [1], b: [2]}groupsbkey2valuegroups ← {a: [1, 3], b: [2]}
2val pairs = listOf("a" to 1, "b" to 2, "a" to 3, "c" to 4, "b" to 5)3val groups = linkedMapOf<String, MutableList<Int>>()4for ((key, value) in pairs) {values this step{a: [1], b: [2]} → {a: [1, 3], b: [2]}groupsakey3valuegroups ← {a: [1, 3], b: [2], c: [4]}
2val pairs = listOf("a" to 1, "b" to 2, "a" to 3, "c" to 4, "b" to 5)3val groups = linkedMapOf<String, MutableList<Int>>()4for ((key, value) in pairs) {values this step{a: [1, 3], b: [2]} → {a: [1, 3], b: [2], c: [4]}groupsckey4valuegroups ← {a: [1, 3], b: [2, 5], c: [4]}
2val pairs = listOf("a" to 1, "b" to 2, "a" to 3, "c" to 4, "b" to 5)3val groups = linkedMapOf<String, MutableList<Int>>()4for ((key, value) in pairs) {values this step{a: [1, 3], b: [2], c: [4]} → {a: [1, 3], b: [2, 5], c: [4]}groupsbkey5valuestdout ← {a: [1, 3], b: [2, 5], c: [4]}
7 val parts = groups.map { (key, values) -> "$key: [${values.joinToString(", ")}]" }8 println("{${parts.joinToString(", ")}}")9}values this step{a: [1, 3], b: [2, 5], c: [4]}stdout{a: [1, 3], b: [2, 5], c: [4]}groupsbucket 1 after collision ← c -> a, degradation risk ← long chains can degrade lookup toward O(n)
7 val parts = groups.map { (key, values) -> "$key: [${values.joinToString(", ")}]" }8 println("{${parts.joinToString(", ")}}")9}values this stepa → c -> abucket 1 after collisionlong chains can degrade lookup toward O(n)degradation riskresize or rehash when load factor growsmitigationcnew key
Complexity
- Time: O(n) average
- Space: O(k + n) for buckets and values
Implementation notes
- Keep output formatting deterministic. Do not rely on unordered hash-map printing when the lesson needs cross-language comparison.
- The trace highlights the hash table state after each write and includes a collision contrast where one bucket chain grows, showing why long chains can degrade lookup and why real tables resize or rehash.