Basically, they are just two different implementations of List interface. LinkedList is implemented with a double-linked list; ArrayList is implemented with a dynamically resizing array. 所以基本的区别于list和array的区别很像,就是for random access, ArrayList is bette…