New Methods Due by Monday: myLinkedListImproved<T>{ public void extend(MyLinkedListImproved<T> other){ //in O(1) runtime, move the elements from other onto the end of this //The size of other is reduced to 0 //The size of this is now the combined sizes of both original lists } } public class Sort{ public static void radixsort(MyLinkedListImproved<Integer> data) {} } |