It is a simple dictionary class that can add, get, set and remove keys and values
- You should have JRE 11+ installed.
This class has six methods.
They are ->
-> This method adds a key-value pair to the dictionary
-> This method gets the key from the desired index
-> This method gets the value from the desired index
-> This method changes the key in the desired index
-> This method changes the value in the desired index
-> This method removes the key-value pair from the dictionary in the desired index
This class also has one constructor.
They are ->
It initialises the key and value
I have done this by using the concept of Generics and LinkedList