Answer:
I would use an array list over a linked list to store the given information from the question.
Step-by-step explanation:
Let us define what an array list and linked list are
Array list: Array List and Linked List both maintains insertion order and implements List interface. Array List basically uses a dynamic array to keep or store the elements.
Linked list: Linked List internally uses a list that is doubly linked to keep or store the elements
Now,
Using an array list will be of advantage than a linked list as far as look ups are concerned. also we do have some idea about the size of information,
while a Linked list will be useful when we don't know the size of data. also retrieving the information from the array list is much more simpler than linked list as random access is possible with arrays against sequential traversal for lists.