This document discusses linear search. It contains the names of group members working on the topic. It then defines linear search as checking all elements of an array or structure sequentially until the desired result is found. It provides an example of searching for a phone number in a telephone directory. The document includes pseudocode and C++ code implementations of linear search. It discusses using linear search on a linked list. It covers the advantages of linear search running in constant time if the item is first in the list, and the disadvantages of search time increasing linearly with the number of elements.