Skip to content

Commit 1c39024

Browse files
authored
Update Dictionary(Sorted).java
1 parent 0e3654d commit 1c39024

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/datastructures/dictionary/Dictionary(Sorted).java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* A clone of a Python dictionary in a Java class that simulates a key-value store using a hash table
55
* implemented from scratch without using standard collections like Map.
66
*/
7-
public class DictionarySort {
7+
public class "Dictionary(Sorted)" {
88
private static final int SIZE = 10; // Number of buckets
99
private Bucket[] buckets;
1010
private SortStrategy sortStrategy = SortStrategy.KEY; // Default sorting strategy

0 commit comments

Comments
 (0)