Can any one explain | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can any one explain

Can any one explain about dictionary and hashtable

9th Sep 2019, 5:32 PM
๐Ÿ‘€ Sandy๐Ÿ‘€
๐Ÿ‘€  Sandy๐Ÿ‘€ - avatar
2 Answers
0
It's very hard to explain the dictionary and hashtable data structures completely in the comment section. These are some links that can help you to understand dictionary and hashtable. Dictionary - https://docs.python.org/3/tutorial/datastructures.html#dictionaries https://www.geeksforgeeks.org/python-dictionary/ Hashtable - https://www.geeksforgeeks.org/hashing-data-structure/
9th Sep 2019, 6:36 PM
Vijay Meena
0
hash table, dictionary, map, it are names for same structure where you can store (key, value) pair in one element. Key can has different type as value. eg (int num, String name) (String english, String france)
9th Sep 2019, 9:44 PM
zemiak