What is a Hashtable/Hashmap?

A hashtable is a data structure that with a collection of key-value pairs, where each key maps to a value, and the keys must be unique and hashable.

  • In Python there is a built in hashtable known as a dictionary.

The primary purpose of a hashtable is to provide efficient lookup, insertion, and deletion operations. When an element is to be inserted into the hashtable, a hash function is used to map the key to a specific index in the underlying array that is used to store the key-value pairs. The value is then stored at that index. When searching for a value, the hash function is used again to find the index where the value is stored.

The key advantage of a hashtable over other data structures like arrays and linked lists is its average-case time complexity for lookup, insertion, and deletion operations.

  • The typical time complexity of a hashtable is O(1).

What is Hashing and Collision?

Hashing is the process of mapping a given key to a value in a hash table or hashmap, using a hash function. The hash function takes the key as input and produces a hash value or hash code, which is then used to determine the index in the underlying array where the value is stored. The purpose of hashing is to provide a quick and efficient way to access data, by eliminating the need to search through an entire data structure to find a value.

However, it is possible for two different keys to map to the same hash value, resulting in a collision. When a collision occurs, there are different ways to resolve it, depending on the collision resolution strategy used.

Python's dictionary implementation is optimized to handle collisions efficiently, and the performance of the dictionary is generally very good, even in the presence of collisions. However, if the number of collisions is very high, the performance of the dictionary can degrade, so it is important to choose a good hash function that minimizes collisions when designing a Python dictionary.

What is a Set?

my_set = set([1, 2, 3, 2, 1])
print(my_set)  

# What do you notice in the output?
# 
# The output prints out 3 numbers and doesn't repeat the values in the set. 

# Why do you think Sets are in the same tech talk as Hashmaps/Hashtables?
#
# Sets are useful in removing duplicates from a list. 
# Hash functions help preprocess data, which the set function can help do.
{1, 2, 3}

Dictionary Example

Below are just some basic features of a dictionary. As always, documentation is always the main source for all the full capablilties.

lover_album = {
    "title": "Lover",
    "artist": "Taylor Swift",
    "year": 2019,
    "genre": ["Pop", "Synth-pop"],
    "tracks": {
        1: "I Forgot That You Existed",
        2: "Cruel Summer",
        3: "Lover",
        4: "The Man",
        5: "The Archer",
        6: "I Think He Knows",
        7: "Miss Americana & The Heartbreak Prince",
        8: "Paper Rings",
        9: "Cornelia Street",
        10: "Death By A Thousand Cuts",
        11: "London Boy",
        12: "Soon You'll Get Better (feat. Dixie Chicks)",
        13: "False God",
        14: "You Need To Calm Down",
        15: "Afterglow",
        16: "Me! (feat. Brendon Urie of Panic! At The Disco)",
        17: "It's Nice To Have A Friend",
        18: "Daylight"
    }
}

# What data structures do you see?
# Data structures used are dictionary, list, and set.

# Printing the dictionary
print(lover_album)
{'title': 'Lover', 'artist': 'Taylor Swift', 'year': 2019, 'genre': ['Pop', 'Synth-pop'], 'tracks': {1: 'I Forgot That You Existed', 2: 'Cruel Summer', 3: 'Lover', 4: 'The Man', 5: 'The Archer', 6: 'I Think He Knows', 7: 'Miss Americana & The Heartbreak Prince', 8: 'Paper Rings', 9: 'Cornelia Street', 10: 'Death By A Thousand Cuts', 11: 'London Boy', 12: "Soon You'll Get Better (feat. Dixie Chicks)", 13: 'False God', 14: 'You Need To Calm Down', 15: 'Afterglow', 16: 'Me! (feat. Brendon Urie of Panic! At The Disco)', 17: "It's Nice To Have A Friend", 18: 'Daylight'}}
print(lover_album.get('tracks'))
# or
print(lover_album['tracks'])
{1: 'I Forgot That You Existed', 2: 'Cruel Summer', 3: 'Lover', 4: 'The Man', 5: 'The Archer', 6: 'I Think He Knows', 7: 'Miss Americana & The Heartbreak Prince', 8: 'Paper Rings', 9: 'Cornelia Street', 10: 'Death By A Thousand Cuts', 11: 'London Boy', 12: "Soon You'll Get Better (feat. Dixie Chicks)", 13: 'False God', 14: 'You Need To Calm Down', 15: 'Afterglow', 16: 'Me! (feat. Brendon Urie of Panic! At The Disco)', 17: "It's Nice To Have A Friend", 18: 'Daylight'}
{1: 'I Forgot That You Existed', 2: 'Cruel Summer', 3: 'Lover', 4: 'The Man', 5: 'The Archer', 6: 'I Think He Knows', 7: 'Miss Americana & The Heartbreak Prince', 8: 'Paper Rings', 9: 'Cornelia Street', 10: 'Death By A Thousand Cuts', 11: 'London Boy', 12: "Soon You'll Get Better (feat. Dixie Chicks)", 13: 'False God', 14: 'You Need To Calm Down', 15: 'Afterglow', 16: 'Me! (feat. Brendon Urie of Panic! At The Disco)', 17: "It's Nice To Have A Friend", 18: 'Daylight'}
print(lover_album.get('tracks')[4])
# or
print(lover_album['tracks'][4])
The Man
The Man
# What can you change to make sure there are no duplicate producers?

lover_album["producer"] = list(set(['Taylor Swift', 'Jack Antonoff', 'Joel Little', 'Taylor Swift', 'Louis Bell', 'Frank Dukes']))

# Printing the dictionary
print(lover_album)
{'title': 'Lover', 'artist': 'Taylor Swift', 'year': 2019, 'genre': ['Pop', 'Synth-pop'], 'tracks': {1: 'I Forgot That You Existed', 2: 'Cruel Summer', 3: 'Lover', 4: 'The Man', 5: 'The Archer', 6: 'I Think He Knows', 7: 'Miss Americana & The Heartbreak Prince', 8: 'Paper Rings', 9: 'Cornelia Street', 10: 'Death By A Thousand Cuts', 11: 'London Boy', 12: "Soon You'll Get Better (feat. Dixie Chicks)", 13: 'False God', 14: 'You Need To Calm Down', 15: 'Afterglow', 16: 'Me! (feat. Brendon Urie of Panic! At The Disco)', 17: "It's Nice To Have A Friend", 18: 'Daylight'}, 'producer': ['Frank Dukes', 'Joel Little', 'Taylor Swift', 'Louis Bell', 'Jack Antonoff']}
lover_album["tracks"].update({19: "All Of The Girls You Loved Before"})

# How would add an additional genre to the dictionary, like electropop? 

lover_album["genre"].append("electropop")

# Printing the dictionary
print(lover_album)
{'title': 'Lover', 'artist': 'Taylor Swift', 'year': 2019, 'genre': ['Pop', 'Synth-pop', 'electropop'], 'tracks': {1: 'I Forgot That You Existed', 2: 'Cruel Summer', 3: 'Lover', 4: 'The Man', 5: 'The Archer', 6: 'I Think He Knows', 7: 'Miss Americana & The Heartbreak Prince', 8: 'Paper Rings', 9: 'Cornelia Street', 10: 'Death By A Thousand Cuts', 11: 'London Boy', 12: "Soon You'll Get Better (feat. Dixie Chicks)", 13: 'False God', 14: 'You Need To Calm Down', 15: 'Afterglow', 16: 'Me! (feat. Brendon Urie of Panic! At The Disco)', 17: "It's Nice To Have A Friend", 18: 'Daylight', 19: 'All Of The Girls You Loved Before'}, 'producer': ['Frank Dukes', 'Joel Little', 'Taylor Swift', 'Louis Bell', 'Jack Antonoff']}
for k,v in lover_album.items(): # iterate using a for loop for key and value
    print(str(k) + ": " + str(v))

# Write your own code to print tracks in readable format
tracks_dict = lover_album["tracks"]
track = 1
for song in tracks_dict.values():
    print("Track " + str(track) + ": " + str(song))
    track += 1
title: Lover
artist: Taylor Swift
year: 2019
genre: ['Pop', 'Synth-pop', 'electropop']
tracks: {1: 'I Forgot That You Existed', 2: 'Cruel Summer', 3: 'Lover', 4: 'The Man', 5: 'The Archer', 6: 'I Think He Knows', 7: 'Miss Americana & The Heartbreak Prince', 8: 'Paper Rings', 9: 'Cornelia Street', 10: 'Death By A Thousand Cuts', 11: 'London Boy', 12: "Soon You'll Get Better (feat. Dixie Chicks)", 13: 'False God', 14: 'You Need To Calm Down', 15: 'Afterglow', 16: 'Me! (feat. Brendon Urie of Panic! At The Disco)', 17: "It's Nice To Have A Friend", 18: 'Daylight', 19: 'All Of The Girls You Loved Before'}
producer: ['Frank Dukes', 'Joel Little', 'Taylor Swift', 'Louis Bell', 'Jack Antonoff']
Track 1: I Forgot That You Existed
Track 2: Cruel Summer
Track 3: Lover
Track 4: The Man
Track 5: The Archer
Track 6: I Think He Knows
Track 7: Miss Americana & The Heartbreak Prince
Track 8: Paper Rings
Track 9: Cornelia Street
Track 10: Death By A Thousand Cuts
Track 11: London Boy
Track 12: Soon You'll Get Better (feat. Dixie Chicks)
Track 13: False God
Track 14: You Need To Calm Down
Track 15: Afterglow
Track 16: Me! (feat. Brendon Urie of Panic! At The Disco)
Track 17: It's Nice To Have A Friend
Track 18: Daylight
Track 19: All Of The Girls You Loved Before
def search():
    search = input("What would you like to know about the album?")
    if lover_album.get(search.lower()) == None:
        print("Invalid Search")
    else:
        print(lover_album.get(search.lower()))

search()

# This is a very basic code segment, how can you improve upon this code?
# We can add a feature that includes crud methods. This could be that when the topic is searched,
# something can be updated or deleted using the search definition as well. We can also add more text
# so that when the artist is asked it prints out a full sentence.
Taylor Swift

Hacks

  • What are the pro and cons of using this data structure?
  • Dictionary vs List

Lists

Dictionaries

midnights_album = {
    "title": "Midnight 3 am",
    "artist": "Taylor Swift",
    "year": 2022,
    "genre": ["Pop", "Synth-pop", "Alternative/Indie"],
    "tracks": {
        1: "Lavender Haze",
        2: "Maroon",
        3: "Anti-Hero",
        4: "Snow on the Beach",
        5: "You're on Your Own Kids",
        6: "Midnight Rain",
        7: "Question...?",
        8: "Vigilante Sh*t",
        9: "Bejeweled",
        10: "Labyrinth",
        11: "Karma",
        12: "Sweet Nothing",
        13: "Mastermind",
        14: "The Great War",
        15: "Bigger Than The Whole Sky",
        16: "Paris",
        17: "High Infidelity",
        18: "Glitch",
        19: "Would've, Could've, Should've",
        20: "Dear Reader"
    }
}
print(midnights_album.get('tracks'))
# or
print(midnights_album['tracks'])
{1: 'Lavender Haze', 2: 'Maroon', 3: 'Anti-Hero', 4: 'Snow on the Beach', 5: "You're on Your Own Kids", 6: 'Midnight Rain', 7: 'Question...?', 8: 'Vigilante Sh*t', 9: 'Bejeweled', 10: 'Labyrinth', 11: 'Karma', 12: 'Sweet Nothing', 13: 'Mastermind', 14: 'The Great War', 15: 'Bigger Than The Whole Sky', 16: 'Paris', 17: 'High Infidelity', 18: 'Glitch', 19: "Would've, Could've, Should've", 20: 'Dear Reader'}
{1: 'Lavender Haze', 2: 'Maroon', 3: 'Anti-Hero', 4: 'Snow on the Beach', 5: "You're on Your Own Kids", 6: 'Midnight Rain', 7: 'Question...?', 8: 'Vigilante Sh*t', 9: 'Bejeweled', 10: 'Labyrinth', 11: 'Karma', 12: 'Sweet Nothing', 13: 'Mastermind', 14: 'The Great War', 15: 'Bigger Than The Whole Sky', 16: 'Paris', 17: 'High Infidelity', 18: 'Glitch', 19: "Would've, Could've, Should've", 20: 'Dear Reader'}
for k,v in midnights_album.items(): 
    print(str(k) + ": " + str(v))
title: Midnight 3 am
artist: Taylor Swift
year: 2022
genre: ['Pop', 'Synth-pop', 'Alternative/Indie']
tracks: {1: 'Lavender Haze', 2: 'Maroon', 3: 'Anti-Hero', 4: 'Snow on the Beach', 5: "You're on Your Own Kids", 6: 'Midnight Rain', 7: 'Question...?', 8: 'Vigilante Sh*t', 9: 'Bejeweled', 10: 'Labyrinth', 11: 'Karma', 12: 'Sweet Nothing', 13: 'Mastermind', 14: 'The Great War', 15: 'Bigger Than The Whole Sky', 16: 'Paris', 17: 'High Infidelity', 18: 'Glitch', 19: "Would've, Could've, Should've", 20: 'Dear Reader'}
tracks_dict = midnights_album["tracks"]
track = 1
for song in tracks_dict.values():
    print("Track " + str(track) + ": " + str(song))
    track += 1
Track 1: Lavender Haze
Track 2: Maroon
Track 3: Anti-Hero
Track 4: Snow on the Beach
Track 5: You're on Your Own Kids
Track 6: Midnight Rain
Track 7: Question...?
Track 8: Vigilante Sh*t
Track 9: Bejeweled
Track 10: Labyrinth
Track 11: Karma
Track 12: Sweet Nothing
Track 13: Mastermind
Track 14: The Great War
Track 15: Bigger Than The Whole Sky
Track 16: Paris
Track 17: High Infidelity
Track 18: Glitch
Track 19: Would've, Could've, Should've
Track 20: Dear Reader