These are linked lists of objects that follow sorting rules, i.e. objects are added or removed such that the sort order is maintained. A sort order may be alphabetical, numerical, etc. In a linked list, finding, removing, and adding an element to the list all involve traversing the list one node at a time, and are thus all O(N).