This document summarizes several standard algorithms: linear search, counting occurrences, and finding maximum/minimum. Linear search compares each item in a list to search criteria and returns the position of a matching item or a message if not found. Counting occurrences iterates through a list to tally the number of times a search item appears. Finding maximum/minimum iterates through a list to update and return the largest or smallest value.