Skip to content

gvrosun/hashtable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

HashTable

HashTable is a python library (Data Structure) it has almost all functionality of dictionary in python.

Installation

Use the package manager pip to install HashTable.

pip install hashtable-python

Usage

from hashtable import HashTable

my_hashtable = HashTable(5)  # Create instance of hashtable with fixed sized 5
my_hashtable['mango'] = 100  # Creating key='mango' and value=100
my_hashtable.items()         # Returns list of tuples of key and value [(kay, value),...)
my_hashtable.keys()          # Returns list of keys
my_hashtable.values()        # Returns list of values
my_hashtable['mango']        # Returns value of specified key
my_hashtable.delete('mango') # Deletes item in the specified key

License

MIT License

Copyright (c) 2021 Rosun GV

About

HashTable implementation using python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages