This document provides descriptions and examples of standard algorithms:
1. Input validation ensures user input is in the correct format. An example checks a score is between 0-9999.
2. Finding min/max values uses a variable to track the lowest/highest items in an array. Examples find fastest time and best score.
3. Linear search checks each item to find a match. Using a flag improves it to report if the item was found. Conditional loops stop searching after a match.