We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 404e140 commit 938d06aCopy full SHA for 938d06a
src/main/java/com/thealgorithms/datastructures/hashmap/Readme.md
@@ -2,6 +2,8 @@
2
3
A hash map organizes data so you can quickly look up values for a given key.
4
5
+> Note: The term “hash map” refers to the data structure concept, while `HashMap` refers specifically to Java’s implementation.
6
+
7
## Strengths:
8
- **Fast lookups**: Lookups take O(1) time on average.
9
- **Flexible keys**: Most data types can be used for keys, as long as they're hashable.
0 commit comments