I am writing my own linked list in java that is of generic type instead of using the java collections linked list. The add method for the linked list is made up of the followi
Does your implementation extend the java.util.List interface?
Can you simply add the object to the list, then sort the list using Collections.sort()?