Skip to content

csalhab/hash-table-javascript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Hash Table - Javascript

Description

Hash Tables are a Data Structure that allow you to create a list of paired values (aka key/value pairs). You can then using the key, retrieve its value.

A Hash Table transforms a key into an integer index using a hash function, and the index will decide where to store the key/value pair in memory.

Table of Contents


Deployment

You may see the deployed Hash Map - Javascript Notes here


Hash Table Notes


Big O

Operates fast in searching, inserting and deleting.

Worst case: O(n)

Object

Map


Mock Up


Credits:

Full Stack Development Bootcamp Course Notes.

Plus, following tutorials/resources were leveraged:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published