Programming Project: Iterative List Merge Sort

Ans: If you iterate through a list and make insertions and/or removals during the iteration, use LinkedList. If you access and/or replace elements at widely varying indexes, use ArrayList. 5.In the Java Collection Framework, the LinkedList class is designed as a circular, doubly-linked list with a dummy entry (pointed to by the header field). ................
................