- add(int, T) - Method in class listClasses.BasicDoubleLinkedList
-
Adds element at the index position in the list.
- add(T) - Method in class listClasses.SortedDoubleLinkedList
-
Inserts the specified element at the correct position in the sorted list.
- addToEnd(T) - Method in class listClasses.BasicDoubleLinkedList
-
Adds element to the end of the list.
- addToEnd(T) - Method in class listClasses.SortedDoubleLinkedList
-
This operation is invalid for a sorted list.
- addToFront(T) - Method in class listClasses.BasicDoubleLinkedList
-
Adds element to the front of the list.
- addToFront(T) - Method in class listClasses.SortedDoubleLinkedList
-
This operation is invalid for a sorted list.