The document describes a Linked List data structure and its methods. It defines a Node class to create nodes with a field (f) and time (t). A Linked_List class is created with methods to insert nodes at the head, end, after or before another node based on its field. An Arrivals class is defined to manage two linked lists - listA for scheduled arrivals and listB for landed flights. Its landed() method deletes a node from listA and adds it to listB when a flight lands.