We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e3654d commit 1c39024Copy full SHA for 1c39024
src/main/java/com/thealgorithms/datastructures/dictionary/Dictionary(Sorted).java
@@ -4,7 +4,7 @@
4
* A clone of a Python dictionary in a Java class that simulates a key-value store using a hash table
5
* implemented from scratch without using standard collections like Map.
6
*/
7
-public class DictionarySort {
+public class "Dictionary(Sorted)" {
8
private static final int SIZE = 10; // Number of buckets
9
private Bucket[] buckets;
10
private SortStrategy sortStrategy = SortStrategy.KEY; // Default sorting strategy
0 commit comments