This commit is contained in:
2025-04-29 17:51:52 +03:00
parent 9e95d7d514
commit 86ef6a2f43
21 changed files with 1272 additions and 0 deletions

View File

@ -0,0 +1,13 @@
import java.util.Iterator;
import java.util.Scanner;
public class TelephoneDirectory
{
private DictionaryInterface<Name, String> phoneBook;
public TelephoneDirectory()
{
//phoneBook = new SortedArrayDictionary<>();
phoneBook = new SortedLinkedDictionary<>(); //Currently Linked Directory
} // end default constructor