[10 pts] Assume an array based implementation of a linked list. Assume
the array size is 5. Show the data structure and the list
after the following operations:
L.Insert(1);
L.Insert(5);
L.Insert(4);
L.Delete(1);
L.Delete(4);
Please draw the array, the linked list, and the free list.