Skip to content

Commit 80dd6e4

Browse files
authored
Add details to hash tables (#178)
1 parent beb0b27 commit 80dd6e4

7 files changed

+63
-17
lines changed

hashtable/README.md

+21-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# Hash Table
22

3-
Hash tables are a fundamental data structure that operates based on key-value pairs and enables constant-time operations for lookup, insertion, and deletion. Hash tables use immutable keys that can be strings or integers among other things. However, in more complex applications, a hashing function, and different collision resolution methods such as separate chaining, linear probing, quadratic probing, and double hashing, can be used.
3+
Hash tables are a fundamental data structure that operates based on key-value pairs and enables constant-time operations for lookup, insertion, and deletion. Hash tables use immutable keys that can be strings or integers among other things. The following diagram shows a hash table that has integer keys and string values.
4+
5+
```ASCII
6+
[Figure 1] Hash table with integer keys and string values
7+
┌─────┐ ┌─────┐
8+
│ 1 ├─────► │ foo │
9+
└─────┘ └─────┘
10+
┌─────┐ ┌─────┐
11+
│ 2 ├─────► │ bar │
12+
└─────┘ └─────┘
13+
┌─────┐ ┌─────┐
14+
│ 3 ├─────► │ baz │
15+
└─────┘ └─────┘
16+
```
17+
18+
A collision occurs if we attempt to assign "bar" at key 3 as key 3 already exists. In more complex applications to avoid key collisions, a hashing function, and different collision resolution methods such as separate chaining, linear probing, quadratic probing, and double hashing, can be used.
419

520
## Implementation
621

@@ -9,9 +24,7 @@ In Go, hash tables are implemented as maps, a built-in language data type. To de
924
```Go
1025
package main
1126

12-
import (
13-
"fmt"
14-
)
27+
import "fmt"
1528

1629
func main() {
1730
numbers := make(map[string]int)
@@ -33,9 +46,7 @@ As shown below it is possible in Go to store variables as keys in a map. It is a
3346
```Go
3447
package main
3548

36-
import (
37-
"fmt"
38-
)
49+
import "fmt"
3950

4051
type person struct {
4152
name string
@@ -67,9 +78,11 @@ func isAllowed(person *person) {
6778
}
6879
```
6980

81+
In the above example the `struct{}` in `map[*person]struct{}` makes this map allocate no memory as value so it only contains keys. This can be useful to remove duplicates from a list or keep a list of allowed or disallowed items without spending extra memory.
82+
7083
## Complexity
7184

72-
Hash tables provide O(1) time complexity for inserting, deletion, and searching operations.
85+
Hash tables provide O(1) time complexity for inserting, deletion, and searching operations. The space complexity of a hash table depends on what is being stored.
7386

7487
## Application
7588

hashtable/cut_brick_wall_test.go

+23-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,29 @@ TestCutBrickWall tests solution(s) with the following signature and problem desc
77
88
func CutBrickWall(wall [][]int) int
99
10-
Given a two dimensional array of numbers representing the length of each brick in each
11-
row of a wall, return the position at which we could do the least amount of cuts (by not
12-
having to cut the touch points where bricks meet).
10+
Given a two dimensional array of numbers representing the length of bricks of equal hight in each
11+
row of a wall, return the position at which we could do the least amount of cuts in order
12+
to have a rectangular wall.
13+
14+
For example given {1, 2, 2}, {3, 2}, {2, 3}, return 3.
15+
16+
┌─────┬───────────┬───────────┐
17+
│ 1 │ 2 │ 2 │
18+
├─────┴───────────┼───────────┤
19+
│ 3 │ 2 │
20+
├───────────┬─────┴───────────┤
21+
│ 2 │ 3 │
22+
└───────────┴─────────────────┘
23+
24+
┌─────┬───────────┐
25+
│ 1 │ 2 │
26+
├─────┴───────────┤
27+
│ 3 │
28+
├───────────┬─────┤
29+
│ 2 │ 1 │
30+
└───────────┴─────┘
31+
32+
We can have the above wall after cutting only one brick at position 2 row 3.
1333
*/
1434
func TestCutBrickWall(t *testing.T) {
1535
tests := []struct {

hashtable/find_anagrams_test.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ TestFindAnagrams tests solution(s) with the following signature and problem desc
1010
1111
func FindAnagrams(words []string) [][]string
1212
13-
Given a dictionary, return lists of words that are anagrams of each other.
13+
Given a dictionary, return lists of words that are anagrams of each other. Two words are
14+
anagrams if rearranging the letters of one results in the other.
15+
16+
For example given {"cat", "tac", "bar", "baz", "act"} return {"cat", "tac", "act"} because they are
17+
the only anagrams in the list.
1418
*/
1519
func TestFindAnagrams(t *testing.T) {
1620
tests := []struct {

hashtable/max_points_on_line_test.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ TestMaxPointsOnALine tests solution(s) with the following signature and problem
77
88
func MaxPointsOnALine(points [][]int) int
99
10-
Given multiple coordinates of points like {[1,1], [2,2], [3,3], [4,5]}, return the maximum
11-
number of points that are on the same line like 3.
10+
Given multiple coordinates of points like, return the maximum number of points that are on the same.
11+
12+
For example given {[1,1], [2,2], [3,3], [4,5]} return 3 because the points [1,1], [2,2], [3,3] are on
13+
the same line.
1214
*/
1315
func TestMaxPointsOnALine(t *testing.T) {
1416
tests := []struct {

hashtable/missing_number_test.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ TestMissingNumber tests solution(s) with the following signature and problem des
77
88
func MissingNumber(numbers []int) int
99
10-
Given an unsorted array of numbers like {7,5,3,4,1,2,0,-1} return the missing integer like 6.
10+
Given an unsorted slice of numbers like return the missing integer.
11+
12+
For example given {7,5,3,4,1,2,0,-1}, return the missing integer like 6.
1113
*/
1214
func TestMissingNumber(t *testing.T) {
1315
tests := []struct {

hashtable/smallest_missing_positive_integer_test.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ TestSmallestMissingPositiveInteger tests solution(s) with the following signatur
77
88
func SmallestMissingPositiveInteger(input []int) int
99
10-
Given a list of integers, return the smallest missing positive integer.
10+
Given a slice of integers, return the smallest missing positive integer.
11+
12+
For example given {-9, 0, 1, 2, 3, 4, 5, 6} return 7 because -9 is not a positive integer and
13+
all numbers from 0 to 6 are present in the list.
1114
*/
1215
func TestSmallestMissingPositiveInteger(t *testing.T) {
1316
tests := []struct {

hashtable/sum_up_to_k_test.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ TestSumUpToK tests solution(s) with the following signature and problem descript
1010
1111
func SumUpToK(numbers []int, k int) []int
1212
13-
Given a list, output the indices of the first two elements that sum up to K.
13+
Given a slice of integers, output the indices of the first two elements that sum up to K.
14+
15+
For example given {1, 2, 3, 4} and K = 5, return {1, 2} because 2 + 3 = 5.
1416
*/
1517
func TestSumUpToK(t *testing.T) {
1618
tests := []struct {

0 commit comments

Comments
 (0)