My assignment is supposed to be implementing certain methods from list and linkedlist, using a singly linked list (nodes).
I was wondering how would I implement the equals method and hashcode method ...
Ok, basically i want to have a program that stores a list of Strings from an array into a linked list. So i will make one linked list for each alphabet. I will be using an array as well, so at index 0: Adrian -> Angle -> NULL, at index 1: -> Boing -> Bear -> Beta -> NULL, etc etc. ...