Implement the dictionary ADT of Figure 4.27 using an unsorted linked list as defined by class LList

Question:

Implement the dictionary ADT of Figure 4.27 using an unsorted linked list as defined by class LList in Figure 4.8.

// Linked list implementation class LList implements List { private Link head; private Link tail; protected

Make the implementation as efficient as you can, given the restriction that your implementation must use the unsorted linked list and its access operations to implement the dictionary.

/** The Dictionary abstract class. */ public interface Dictionary { }; /**Reinitialize dictionary */ public

State the asymptotic time requirements for each function member of the dictionary ADT under your implementation.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: