The document describes a search algorithm to find the location of an item in a linked list. It involves the following steps:
1. Initialize a pointer PTR to the start node of the linked list.
2. Repeat step 3 while PTR is not NULL.
3. If the item is greater than the info at PTR, set PTR to the link at PTR. Else if the item is equal to the info at PTR, set the location to PTR and exit. Else set the location to NULL and exit.
Related topics: